Answers for "press enter to continue in c++"

C++
0

press enter to continue in c++

#include <limits>
cout << "Press Enter to Continue";
cin.ignore(std::numeric_limits<streamsize>::max(),'\n');
Posted by: Guest on October-23-2021

Browse Popular Code Answers by Language