How to use C++ Sleep() function under Windows
Posted by hide1713 on May 28, 2009
If you want to sleep 1 second in your program, you should do the following thing
1. #include <windows.h>
2. DWORD dwMillseconds=1000;
3. Sleep(doMillseconds);
Posted by hide1713 on May 28, 2009
If you want to sleep 1 second in your program, you should do the following thing
1. #include <windows.h>
2. DWORD dwMillseconds=1000;
3. Sleep(doMillseconds);