Before starting C language, you must first learn how to write, compile and run C programs. Beginning to learn any programming language start with “Hello World Program“. Write a Hello World Program in C after that execute the program and program will prints ‘Hello World’. In this program we will use following syntex:
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("\n Hello World! ");
getch();
}