Recent content by Brent52tc

  1. B

    C/C++ Time Delay in C++: A Simple Solution for a Few Seconds Delay

    Sleep(milliseconds) in c++ You can simply use the Sleep(milliseconds) function which must have windows.h included... I'm a little late, but just in case you still check it a year after the fact :) Example: #include <windows.h> Sleep(1000); //this will sleep for 1 second...