What is the use of iostream | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is the use of iostream

the headerfile iostream what is the use

5th Feb 2018, 3:51 PM
Nabeel
2 Answers
+ 3
http://www.cplusplus.com/reference/iostream/ It helps handle your inputs/outputs.
5th Feb 2018, 3:59 PM
Fata1 Err0r
Fata1 Err0r - avatar
+ 2
Like the C stdio 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."
5th Feb 2018, 4:19 PM
Diwakar
Diwakar - avatar