Basic Syntax of C Programming



The Syntax of C programming is like:
# include<stdio.h>
int main()
{
 <initialization of variables >
 <required code>
return 0;
}

In the above code stdio.h head is the main header file of the C. Which full form is Slandered Input Output Header file. Using this header file we can access all the function related to input and output purpose. With the help of this header file we are able to access printf() and scanf() method. scanf() method is use to read data from the user end whether printf() method is use to print data on the output screen. Function main() is the main area of the program, the compiler starts to compile the code first of all from this area.

Avinash Singh

My name is Avinash Singh. I am a Computer Teacher cum Software Developer. For more detail you can visit on my company web site: http://e-visiontechnocraft.co.in

Post a Comment

Please Select Embedded Mode To Show The Comment System.*

Previous Post Next Post