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.
#include<conio.h>
int main()
{
Printf("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 " } ".
Program#include<stdio.h>
#include<conio.h>
int main()
{
Printf("Hello World !!");
}
OutputHello 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