sudo apt-get install libc6-dev
but my computer does not have iostream.h in following directory
/usr/include
let me know how to install iostream.h
iostream.h is a pretty standard library, did you installed the build-essential package?? It comes with most of the standard libraries you'll need.
Kind regards!
_0R10N >>
iostream.h is a deprecated header, and last time I checked (probably a year ago) was already removed in g++-4.3 and later releases.
Simply use:
Code:
#include <iostream>
instead.
Regards
iostream.h is a deprecated header, and last time I checked (probably a year ago) was already removed in g++-4.3 and later releases.
Simply use:
Code:
#include <iostream>
instead.
Regards
Yes, I can assert that, too.
<iostream> and <iostream.h> are
not
the same. Also read
here
.
vBulletin ©2000 - 2023, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project.
User contributions on this site are licensed under the
Creative Commons Attribution Share Alike 4.0 International License
. For details and our forum data attribution, retention and privacy policy, see
here