I wrote a little console application, and I want it to pause for a certain number of seconds before the cycle (a while) starts again.
I\'m working on Windows operati
easy:
while( true ) { // your stuff sleep( 10 ); // sleeping for 10 seconds };