Showing posts with label hello world. Show all posts
Showing posts with label hello world. Show all posts

29 April 2012

The "Hello World" program written in C

/**********************************************
            This is a simple program
  The program displays a message on the screen
**********************************************/
#include

void main()
{
    printf("Hello World");
    scanf("%*c");
}