(%%%.h)-TO-(%%%)

closed account (jyU4izwU)
How do you get This...

1
2
3
4
5
#include <iostream.h>

//But I want to have a file with:

#include <iosream> 


#include <iostream.h>

#include <iostream>

Can you Help?
This #include <iostream> is standard c++, any modern compiler will accept it.

If you find you have to use #include <iostream.h> , the compiler is non-standard, and out of date.
There are only a few that you need the .h for like windows.h and conio.h which are not standard libraries.
Topic archived. No new replies allowed.