How to run the program by using #include <iostream.h > | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to run the program by using #include <iostream.h >

I use this for my program but not running by using this function on this application

9th Jan 2018, 12:44 PM
Pravin Ghojage
Pravin Ghojage - avatar
2 Answers
+ 4
maybe you are using Turbo C++ then #include <iostream.h> int main() { cout<<"Hello World"<<endl; return 0; } else -> #include <iostream> using namespace std; int main() { cout<<"Hello World"<<endl; return 0; }
9th Jan 2018, 2:15 PM
Amar Dahake
+ 1
i m not sure but i think you simply cannot use iostream. h neither in gnu nor in turbo
9th Jan 2018, 3:03 PM
shobhit
shobhit - avatar