Basic C Structure


A sample C Program template can be as simple as below. The famous “Hello World”
is the famous program among the people interested to learn this language.

#include<stdio.h>
int
main()                               
{     
        –other statements
}