Submitted by matason on Fri, 03/09/2010 - 08:07
I've just been following a getting started with C tutorial, the first task was to write a "Hello world!" program, the suggested code was:
#include < stdio.h>
void main()
{
printf("\nHello World\n");
}
But when I came to compile it with gcc I got this error: