#include <stdio.h>
void main()
{
printf("Hello World .");
}
Preprocessor
Directive
main()
Function
Program
Body
Define Preprocessor
# define identifier value
# It indicates the start of preprocessor directive
Example
# define PI
3.141593
Header Files
Syntax:
# include<Header file name> or # include
“header_file_name”
Example
# include<stdio.h>
#include<math.h>
#include<conio.h>
main() function
Syntax
void main ()
{
Body of main function
}
0 Comments
Thanks for Supporting me