Basically the structure of a C program consists of four modules.
#include<stdio.h>
main() // First function invoked by the compiler
{
printf("WELCOME TO C PROGRAMMING");//To display the things in double quotes
}
WELCOME TO C PROGRAMMING