On Wed, 02 Feb 2000, you wrote:
> Another question.
>
> I am currently in a computer science class that uses g++ to compile programs.
> Now I want to compile some of these programs localy on my computer so I don't
> have to remotely log into their linux box to do my work. I tried a test
> program that looked like this
>
> #include<iostream.h>
>
> int main()
> {
> cout << "This is a test";
> return 0;
> }
>
> and when I do g++ test.cc -o test
> I get this error
> test.cc:1: iostream.h: No such file or directory
> What file libraries/rpms am I missing? Obviously, the compiler can't find the
> iostream.h header file. Thanks in advance.
>
Do you have the libstdc++ headers installed?
John