Linked Questions

Popular Questions

Sleep program execution in C for a few seconds

Asked by At

How can I sleep or pause the program excecution by a few seconds in C? I'm looking for something like this that is used in Java:

Thread.sleep(interval); 

Is possible do this using C ? Thanks in advance.

Related Questions