I'm a newbie

  • Thread starter Thread starter Hai Nguyen
  • Start date Start date
H

Hai Nguyen

Hi everyone

I used to use VS 6.0 to create my C application. I just started learn how to
use Visual Studio.Net. I wrote a small program like this:
int main()

{

string name;

cout << "What is your name?";

cin >> name;

cout << "Welcome to my World" << name << "Hope you enjoy" << endl;


return EXIT_SUCCESS;

}



I want to know how to stop my console screen. It runs too fast I could not
see anything.



Thanks
 
Hai Nguyen said:
[...]
I want to know how to stop my console screen. It runs too fast I could not
see anything.

If you debug, put a breakpoint onto
the last line. Otherwise start with


HTH,

Schobi

--
(e-mail address removed) is never read
I'm Schobi at suespammers dot org

"Sometimes compilers are so much more reasonable than people."
Scott Meyers
 
Back
Top