InterviewSolution
Saved Bookmarks
| 1. |
Briefly describe the importance of iostream.h file. |
|
Answer» iostream.h is most important header file for basic input and output operations. iostream.h contain built-in functions cout and cin for input-output. So, every C++ program should include iostream.h header file for performing input and output operations. |
|