iostream

#include <iostream>

using namespace std;

int main()
{
int a,b,c;
a = 10;
b = 12;
c = a+b;
cout<< c;
}

It says iostream is not found, is there anyway I can fix the directory or get the file?
Hi!

Your compiler *should* have come set-up to just be able to include it... which one are you using? In some cases, you might choose to reinstall.

-Albatross
Topic archived. No new replies allowed.