Thursday 4 December 2008

Hello World

I have decided to start this blog with a "Hello World" post in keeping with the tradition of introducing a new language to a reader with a "Hello World" program. So here it is in my favourite language:

#include <stdio.h>

int main()
{
    printf("%s\n", "Hello World");
    return 0;
}