can anybody please tell me why my program in visual C++ 2008 is not running due error #include<iostre am.h>?
#include <iostream.h>
Collapse
X
-
Tags: None
-
Thanks. I just did and also got a tip to add namespace std; which I hav done and no more error but I cant see my output window.
Originally posted by Ganon11You want:
#include <iostream>
instead.Comment
-
Originally posted by abdulmahmudI cant see my output window.
[code=cpp]
std::cout << "Press Enter or Return to continue.\n";
std::cin.get();
[/code]
or system("pause") ; in windows to pause the program before it exits.Comment
Comment