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
2 Respuestas
+ 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;
}
+ 1
i m not sure but i think you simply cannot use iostream. h neither in gnu nor in turbo