

InterviewSolution
Saved Bookmarks
1. |
What is the main function of iostream.h header file? |
Answer» The iostream.h header file contains C++ streams and i/o routine functions. It is a header file which we include in our programs to perform basic input output operations. We use ‘cin’ in programs to get input from the keyboard. To use ‘cin’ and ‘cout’, we must add iostream. h header file |
|