Author Archives: admin

Hello world!

My blog is up and running. According to custom, the first program on a new system is always ‘hello world’:

#include <stdio.h>

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