Search This Blog

Wednesday, February 9, 2011

first programme in c

#include<stdio.h>/*header file*/
#include<conio.h>/*header file*/
void main()
{
printf("hello world!");/* printf will print hello world! as output*/
getch();
}

No comments:

Post a Comment