Simple C Program to Print Hello World

Hello World Program


#include<stdio.h>
#include<conio.h>

void main()
{
clrscr();
printf("Hello World!");
getch();
}

Output ::



You can download this program from here



Comments

Popular Posts