Answers for "how to make my function wait 1 second before continue C"

0

how to make my function wait 1 second before continue C

#include <unistd.h> /* must include in file */

sleep(x);

/* x is an int, and the number of seconds to pause */
Posted by: Guest on September-02-2021

Code answers related to "how to make my function wait 1 second before continue C"

Browse Popular Code Answers by Language