Hi Bala,

bala chandar wrote:
I installed build-essential already.But again it shows the same
errors.I need to know which library i need to install to get those
headers.

Firstly, stream.h and fstream.h are not *standard c++ headers*, so they don't exist (afaik) in gnu c++ devel. environment. Please use iostream and fstream instead[1] ...

#include <iostream>
#include <fstream>

Secondly, you'll probably need the appropriate ubuntu packages corresponding to fedora's libstdc++ and libstdc++-devel. I'm sorry, i can't be sure what they are since i use fedora, however, they most likely have the same names.

hth,
- steve

[1] 
http://en.wikipedia.org/wiki/C%2B%2B_standard_library#Streams_and_Input.2FOutput
[2] http://www.cplusplus.com/doc/tutorial/files/
--
why procrastinate when you can perendinate ?
_______________________________________________
To unsubscribe, email [email protected] with "unsubscribe <password> <address>" in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

Reply via email to