Control Structures in C language
A Computer Table
Most of the time we have to take Decisions in the Program...
before going to start this topic please visit my this Post also
...
Header Files
The final mystery of C that needs to be discussed is the header file. This started off as a simple idea, a convenience to make programming easier. If you have a standard set of instructions that you want to insert in a lot of programs that you are writing...
Output from C - Language.
It is very important to get output from any computer language, there is a built in function in c language printf that is used to get output from c language. This function is defined in stdio.h header file.
Its syntax is as follows
printf("Formatted...
What is Data Type?
There are some predefined keywords in C - Language that defines what kind of data would be stored in a variable, what operations can be applied on this data, how much memory will be occupied, and what will be the value range +ve and -ve to store in variable.
Common...
Variables
Variables are named memory locations which are used to store program's input data and its computational Results during program execution.
The Variables are created in the RAM, therefore the data stored in variables is temporarily saved. Every variables has following...
There are some specific Terms every one have to memorize who want to learn C Language
KeyWords
In C Language some words are predefined means have special meanings for C - Language and Compiler of C Language recognize these words and behaves accordingly.
There are 32...
Common Programming Errors
The Programmer may come across errors while writing a computer program. In Programming languages these errors are called "bugs", and the mechanism to find and fix these errors is called "debugging", Some errors are caught by the compiler and some...