Simple C program to Print hello world

Sunday, March 13, 2016 Unknown 0 Comments



  • First program in c programming

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

void main()
{
      clrscr();
      printf("HELLO WORLD");
      getch();
}

Output:

HELLO WORLD

0 comments: