Switch to full style
For C/C++ coders discussions and solutions
Post a reply

pause c++

Thu Oct 14, 2010 3:45 pm

what is best way to pause c++ program i.e. sleep for x miliseconds?



Re: pause c++

Fri Oct 15, 2010 1:11 am

if you are using windows , you can use Sleep(x) function , where x is the number of milliseconds , you have to include windows.h

Post a reply