Use of <iostream> in c++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Use of <iostream> in c++

In c language we use a header file <conio.h> because in this header file clrscr() & getch() fuctions are define. so what functions are define in <iostream> header file

13th Jul 2016, 5:23 PM
Arpit agarwal
6 Answers
+ 3
As <iostream> is a header it does not provide new keywords. Only compilers do that. I assume you actually want to know the functions, classes / structs, operators etc that are declared in <iostream>. It doesn't make sense to list all of them here as you can look them up by a few key strokes, if you have a decent development environment. Try to open the header file in your development environment. Many allow to open headers in a source code file.
13th Jul 2016, 5:35 PM
Stefan
Stefan - avatar
0
header file should be declared top of the program
14th Jul 2016, 11:43 AM
kanav
0
otherwise program makes error
14th Jul 2016, 11:45 AM
kanav
0
it is imp. header file
15th Jul 2016, 6:00 PM
Atharv Relekar
Atharv Relekar - avatar
0
it is a input/output stream
16th Jul 2016, 8:01 AM
karthick abishek
karthick abishek - avatar
- 1
a header file
14th Jul 2016, 6:22 AM
Anurag Yadav
Anurag Yadav - avatar