0
How to use other header files?
How to use other header files like< iostream> instead of <iostream.h> ,what is for <math.h> and others
9 Answers
+ 9
Hey I'm sure
I studied about that in college
+ 7
Hey Mind To Machine
C++ has header <iostream> which you think is right but if <iostream.h> is used there is no use of using namespace std() after it.
That all I know.
+ 7
<*****.h> is an alternate to using namespace std ( )
+ 3
i dont think C++ nor C has a header file <iostream.h>
+ 3
Muaz Ahmad don't be confused with C's <stdio.h> there is no header file <iostream.h>
0
I am assuming you're trying to movw from TurboC++ and Your first step is getting Visual Studio
0
how to use it, its the same.
why not iostream.h its not te current standard used by most of the modern compilers.
for the others, i usually go here
http://www.cplusplus.com/reference/
0
Most header extensions with .h are C style header files.
0
iostream.h is removed from the standard for good. you cant use it anymore. unless the program is compiled using pre 2000 compiler.