How will you type the iostream.h | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How will you type the iostream.h

29th Dec 2016, 4:59 PM
Shafik Sahil
Shafik Sahil - avatar
2 Answers
+ 8
iostream.h is no longer used in later versions of C++. We now use the header 'iostream' instead. (Without .h). e.g. #include <iostream> using namespace std; int main() { // codes }
29th Dec 2016, 5:12 PM
Hatsy Rei
Hatsy Rei - avatar
+ 2
just type #include <iostream>
29th Dec 2016, 5:12 PM
Cody Arthur
Cody Arthur - avatar