M
MattFit
I just downloaded the LCC-Win Compiler and wrote the following program:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
printf("Hello World\n");
return 0;
}
And I get 'Function main is not defined.' Would anyone have an idea as to
why?
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
printf("Hello World\n");
return 0;
}
And I get 'Function main is not defined.' Would anyone have an idea as to
why?