Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to get iostream.h

I'm trying to make something in Linux, but it complains that it can't find iostream.h. What do I need to install to get this file?

like image 535
node ninja Avatar asked Sep 13 '10 06:09

node ninja


1 Answers

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.

like image 139
Johnsyweb Avatar answered Sep 26 '22 08:09

Johnsyweb