c++ on vista

dev cpp where is the out put screen??

so used to turboc cpp ... hehe please help !!!!

see attachment
 

Attachments

  • Untitled.jpg
    Untitled.jpg
    85.1 KB · Views: 100
^The output screen will close after the excution of the program is over. Insert
Code:
cin.get();
cin.ignore();
as the last lines of code in order to get the command window to stay.
 
Don't confuse the lad with VC++, Eclipse and other advanced IDEs used by professionals only.

I suggest Code::Blocks which comes with MinGW compiler. It's decidedly better than Dev-C++. If you're inclined to learn C++ on Windows and plan on migrating to professional development tools later, download Microsoft Visual C++ 2008 Express Edition SP1.
 
Back
Top