Friday 30 January 2015

hello print in C program

/* hello.c -- The most famous program of them all ..
 */

#include <stdio.h>

int main(void) 
{
printf("Hello World!\n");
return 0; 
}

No comments:

Post a Comment