hello world program in c

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

int main()
{
     clrscr();   // it will clear the screen.
     printf("Hello World\n");
     getch();
}

Output:
Hello World

Post a Comment

0 Comments