Posts

Money Maker

We are providing the " ONLINE JOB" for those people who are staying free at their homes/house. The MONEY MAKER is the best way for your free time income. We give u a small-small task, And we pay for that. The money maker is available in only 3 country : 1. U.S.A 2. India 3. Nepal 1. U.S.A :               We pay through paypal in the United States of America. 2. India :             We used to pay via paytm, Google pay & phonepe in India. Our most of the service are availablein India. Our more services will be explore soon in the blog. Please stay tune...... 3. Nepal :               We used to pay through the esawa in Nepal. You can find the online/offline  job in the Nepal. For more details plaesa contact us. Facebook Telegram WhatsApp

Online Music Player

Image
Online Music Player Streaming  music , or more accurately streaming audio, is a way of delivering sound including  music  without requiring you to download files from the  internet . Our  Music  services use this method to provide songs that can be enjoyed on all types of devices. In the past, if you wanted to listen to music or any other type of audio, you downloaded an audio file in a format such as  MP3 ,  WMA ,  AAC ,  OGG , or  FLAC . However, when you use a streaming delivery method, there's no need to download a file. You can start listening through a device or  smart speakers  almost immediately. Streaming differs from downloads in that no copy of the music is saved to your  hard drive . If you want to hear it again, you can easily stream it again, although some paid streaming music services allow you the option to do both—stream and download. The way the streaming pr...

APKS ZONE

Image
APK ZONE . APK   ZONE 1. A-Z Screen Recorder. AZ Screen Recorder  is the best app to record the screen of your Lollipop. It does NOT require root access,  no time limit , no watermark, ad free and very easy to use with one action to start and stop recording.  This screen recording app will let you make beautiful screencast videos by providing every feature that you need in a simple and elegant user experience design. AZ screen recorder lets you record your screen to HD and FullHD videos and it is the only screencast app in the Android market that can be paused and resumed while recording.  You can also record audio from the mic and it is automatically muxed into the screencast videos. That makes it very convenient to create tutorial, promotional video, comment about your game and gameplay or record video chat. The floating window always staying on top will let you snap at the exact moment on any screen.  In the settings, you can enable ...

What is C Programming

C is a programming language developed at AT & T’s Bell Laboratories of USA in 1972. It was designed and written by a man named Dennis Ritchie. In thelate seventies C beganto replace the more familiar languages of that  time like PL/I,ALGOL, etc. No one pushed C. It wasn’t made the ‘official’Bell Labs language. Thus, without anyadvertisement C’s reputation  spread and its pool of users grew. Ritchie seems to have been rather surprised that so many programmers preferred C to older languages like FORTRAN or PL/I, other newer ones like Pascal and APL. But, that's what happened. Possibly why C seems so popular is because it is reliable, simple and easy to use. Moreover, in an industry where newer languages, tools and technologies emerge and vanish day in and day out, a language that has survived for more than 3 decades has to be really good.C++, C# or Java make use of a principle called Object Oriented Programming (OOP) to organize the program. This organizing principle h...

The First C Program

Armed with the knowledge about the types of variables, constants & keywords the next logical step is to combine them to form instructions. However, instead of this, we would write our first C program now. Once we have done that we would see in detail the instructions that it made use of. Before we begin with our first C program do remember the following rules that are applicable to all C programs:  (a)  Each instruction in a C program is written as a separate statement. Therefore a complete C program would comprise of a series of statements.  (b) The statements in a program must appear in the same order in which we wish them to be executed; unless of course the logic of the problem demands a deliberate ‘jump’ or transfer of control to a statement, which is out of sequence.  (c) Blank spaces may be inserted between two words to improve the readability of the statement. However, no blank spaces are allowed within a variable, constant or keyword.  ...

Concept Number, Variable and Symbol

The alphabets, numbers and special symbols when properly combined form constants, variables and keywords. Let us see what are ‘constants’ and ‘variables’ in C. A constant is an entity that doesn’t change whereas a variable is an entity that may change. In any program we typically do lots of calculations. The results of these calculations are stored in computers memory. Like human memory the computer memory also consists of millions of cells. The calculated values are stored in these memory cells. To make the retrieval and usage of these values easy these memory cells (also called memory locations) are given names. Since the value stored in each location may change the names given to these locations are called variable names. Consider the following example. Here 3 is stored in a memory location and a name x is given to it. Then we are assigning a new value 5 to the same memory location x. This would overwrite the earlier value 3, since a memory location can hold only one value ...

C Keyword

Keywords are the words whose meaning has already been explained to the C compiler (or in a broad sense to the computer). The keywords cannotbe used as variable names because if we do so we are trying to assign a new meaning to the keyword, which is not allowed by the computer. Some C compilers allow you to construct variable names that exactly resemble the keywords. However, it would be safer not to mix up the variable names and the keywords. The keywords are also called ‘Reserved words’. There are only 32 keywords available in C. The keywords are:- auto, double, int, struct, break, else, long, switch, case, enum, register, typedef, char, extern, return, union, const, float, short, unsigned, continue, for, signed, void, default, goto, sizeof, volatile, do, if, static, while.