answersLogoWhite

0

What is iostreamh?

Updated: 8/11/2023
User Avatar

Wiki User

10y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is iostreamh?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is difference between iostream and iostreamh in c plus plus?

<iostream.h> is an old style of programming and does not allow using namespaces. If you use <iostream> you can use namespaces, and limit number of predefined function (not used) included with your program.


Why use header file iostreamh?

You use the <iostream> header when you wish to make use of the standard input/output streams, which primarily includes std::cin, std:cout and std::cerr, amongst other standard IO stream facilities. Note that C++ standard library headers do NOT have file extensions. That is, there is no <iostream.h> header in the C++ standard library. The only headers that do have extensions are those specifically provided by the C standard library. However, you must NOT include these headers in your own code as they will pollute the global namespace. If you require these headers, use the corresponding C++ header instead. For example, if you require <math.h>, include <cmath>. The C++ headers will import all the names from corresponding C header and place them in the C++ standard namespace.