* Frederick Noronha (FN) <[EMAIL PROTECTED]> [2003-08-17 16:31 PST]: > Could anyone help pls? FN > > On Sun, 17 Aug 2003, gloria wrote: > > > Hi, > > > > I've just started learning C++ programming and the g++ compiler on my > > computer (Red Hat 9) does not seem to be recognizing the > > "include<iostream>" header file i.e. i'ts built in objects etc. Any > > suggestions?
I don't know much about c++ but it would seem the compiler should look for it in a standard place. Maybe you need c++-devel some something aptly named installed.(my RH 9.0 system has a package called libstdc++5), which gives me [EMAIL PROTECTED] [16:14][01:44][1] find /usr/include -name iostream* /usr/include/c++/3.2/backward/iostream.h /usr/include/c++/3.2/iostream (I am assuming that /usr/include is the place where the cpp compiler will look for headers). Another thing you might check is whether your program is called(file extension) cpp or maybe c++. Maybe the compiler only looks for cpp headers if the program extension is cpp. Finally, are you sure you need to include iostream and not iostream.h? Hope this helps. Aseem. > > > > regards > > Alison > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > linux-india-help mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/linux-india-help ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ linux-india-help mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/linux-india-help
