Where to get iostream.h

The correct name of this standard header is just iostream without an extension.

If your compiler still cannot find it, try the following:

find /usr/include -name iostream -type f -print

…and add it to your include path, following your compiler’s documentation.

Leave a Comment