Tuesday, 11 August 2015

Hello World Program in c Language

Hello World Program , This is Basic Program . Because , Every One Understand Simple To Hard . Now , Here , It's Small Program. But, The Program Can Be Derived No.of Instructions just in this program.


Program
#include<stdio.h>
#include<conio.h>
int main() 
{
Printf("Hello World !!");
}


Output
Hello World !! 


Explain Program:-   The above Program having <stdio.h> is Header file . Every One Call the preprocessor. What is use <stdio.h> ? Can Use a Program printf and scanf operations are include the this <stdio.h>. That's Call This is  " #include<stdio.h> " .

 " int main() " is the method.   " { " Start the Program in the flower brackets . Ends With " } ".

No comments:

Post a Comment