Computer Science, asked by atul4524, 1 year ago

what is the use of iostream.h

Answers

Answered by cutiepie180
2
Like the cstdio header inherited from C's stdio.h, iostream provides basic input and output services for C++ programs. iostream uses the objects cin , cout , cerr , and clog for sending data to and from the standard streams input, output, error (unbuffered), and log (buffered) respectively.
Answered by Anonymous
0

Hey!

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.

Similar questions