Hi all,
I have a simple program:
#include<iostream>
using namespace std;
6
int main()
{
char x;
do
{
scanf("%c", x);
} while (x != 'y');
return 0;
}
and for some reason when i gcc test.c i get
"test.c:1:20: fatal error: iostream: No such fiel or directory
compilation terminated."
I had a look around but couldn't find oput what the problem is.
This is the first time I have used gcc to compile since i installed so could the iostream fiel be missing :S?
Please help.
Thanks