From: matheus r. <mfr...@gm...> - 2009-02-03 19:27:44
|
hi, DEV C++ is just an IDE. What you want is a function from the C/C++ libraries you are using. For example, std C lib provides a scanf function which can make your program wait for user input. Windows also provides a pause function IIRC. The following code in C++ will also wait for user input: #include <iostream> // some code... int temp; std::cin >> temp; // more code... 2009/2/3 George Petculescu <gx...@gm...> > Hi, > > In C++ (Dev-C++) is any action like to delay the execution of actions... > pause, delay ? > > Thanks > |