Oct 7, 2012

Hello, world!

A simple showing message program used to teach programming languages, this will be the first program you learn.

#include <stdio.h>

main()
{
      printf("Hello, world!");
      getchar();
}

No comments:

Post a Comment