You are on page 1of 1

/*******************************************

Statement - Print Hello World


Programmer - Vineet Choudhary
Written For - http://developerinsider.co
********************************************/

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

void main()
{
clrscr();
printf("Hello world\n");
getch();
}

/****************
Output -
Hello world
****************/

You might also like