#include <stdio.h>
int main( ) {
printf ("Hello World");
return 0;
}
In this we explain the Structure of the Program like -
Header File: #include<stdio.h>
Main Function: int main ()
output to be displayed on the screen: printf ( “Hello World” );
Return type: return 0; and
Curly Braces: { }