Powered By Blogger

Friday, December 24, 2010

C Program to display "Hello world"

/* C Program to print "Hello world!"
#include <stdio.h>      
#include <stdlib.h>


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

No comments:

Post a Comment