+ 1
Hey I'm a beginner to C++.What does the h signify in <iosteam.h> and what is conio.h
3 ответов
0
h stands for header file.
+ 9
Anelza <iostream.h> is stand for input output stream library's used in C++. <conio.h> is stand for console input output and .h is extension of header files.
The .h extension files and conio.h are used in old style compiler like TurboC++ which should be avoided now as better option are available
https://www.sololearn.com/discuss/288609/?ref=app
+ 1
Oh thanks