What is the method to tell the console to wait for x seconds. Is there a built in method or must I make one.
|
feedback
|
|
It's platform specific. On Linux/UNIX, or other POSIX-compliant operating systems, you can use the | |||||||||
feedback
|
|
You are looking for the sleep method.
| |||||
feedback
|
|
If you want it to be portable, you have to use preprocessing to determine what operating system it is and include the header as appropriate. It would be good to make a function for calling sleep, like:
Autoconf can help you with this. | |||
|
feedback
|