2011-12-30, 11:02 AM
Do NOT use system("pause"), using system("whatever") is in most cases the mark of the noob coder. Just saying.
Alternatively to keep_window_open(), you can create your own keep_window_open() by doing this:
int main() {
//your code
string quit="";
while(quit!="quit") cin>>quit; //wait until "quit" is written and entered before exiting.
}
Alternatively to keep_window_open(), you can create your own keep_window_open() by doing this:
int main() {
//your code
string quit="";
while(quit!="quit") cin>>quit; //wait until "quit" is written and entered before exiting.
}

