What's wrong with this c code?
Code:
#include <stdio.h>
int main()
{
printf("Hello World\n");
return 0;
}
---------- Post added at 10:19 ---------- Previous post was at 10:10 ----------
NVM - nothing wrong with the code, something wrong with Ubuntu.
It doesn't include the standard libraries as part of the install, which means that the code above won't compile.
Sorted now.