implement time delay in c - Stack Overflow
Here is how you can do it on most desktop systems: #ifdef _WIN32 #include #else #include #endif void wait( int seconds ) { // Pretty crossplatform, both ALL POSIX compliant systems AND Windows #ifdef _WIN32 Sleep( 1000 ......