c

stdio.h : No such file or directory

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:

Subscribe to RSS - c