I program a little bit in C/C++ so i went to compile a program on my pc so I wrote the program and went into compiling,but when I typed gcc -o testing mysource.c it gave me an error.I thought that it was some kind of syntax error so I write a simple program:
Code:
#include <stdio.h>
int main()
{
printf("This is a test");
return 0;
}
After that I tried to compile and that and it gave me this error:
test.c:2:19: stdio.h: No such file or directory
So I installed gcc 2.95 and gcc 3.2 but it is always the same.Some suggestions ?
thanks to all