0
help me ..fatal error
hi guys ,,i have fatal error when i'm building my first program that tell me the following fatal error " fatal error " the <iostream> file not found .. please tell me what i do????
4 Respuestas
0
post your code
0
#include <iostream>
int main()
{
cout<<"hello world"<<endl;
return 0;
}
my problem the compiler not found "iostream"file.
0
try with
#include<iostream>
using namespace std;
0
ok im trying