Friday 6 September 2013

hello Guys! its my first blog today.
gonna teach yu to write a simple c program which will display a hello world :P
 yu can download source file from here click here. or keep reading
#include<stdio.h>
#include<conio.h>
void main()
{
printf("hello world");

getch();
}