c pragram to print hello world


Programm for print "hello world" :-

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("hello world");
getch();
}

Comments