1

Possible Duplicate:
How to compile C++ source code (“iostream.h not found” error)?

I have aquired C++ for dummies, old for a windows GNU compiler. And I get this error, thinking it needs a different variable of the iostream?enter image description hereI'm new to this I know I am not posting the way it should look. Like the screen shot is very small, sorry If I cannot get a response I'll try a different angle.

1 Answers1

2

You are using <iostream.h> which is deprecated in c++, Instead of that you have to use #include<iostream>

Tachyons
  • 17,455