0
What is this <iostream>
4 Respuestas
+ 15
C++ header file for input and output streams, which provide console input and output functionalities.
+ 7
It is a header file which contains inbuilt functions for input/output functions in C++.
"cin>>" ; "cout <<" etc are part of this standard library.
+ 4
it is a library that includes all the functions that deal with the input and output "streams"(cin, cout...)
+ 1
In the C++ programming language, Input/output library refers to a family of class templates and supporting functions in the C++ Standard Library that implement stream-based input/output capabilities. It is an object-oriented alternative to C's FILE-based streams from the C standard library.