SyntaxFix
Write A Post
Hire A Developer
Questions
You could use the Microsoft-specific function _getch:
#include <iostream> #include <conio.h> // ... // ... // ... cout << "Press any key to continue..." << endl; _getch(); cout << "Something" << endl;