Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
The sleep command suspends execution of a process for at least the interval specified by the Seconds parameter. The
amount of time specified in the Seconds parameter can range from 1 to MAXINT (2,147,483,647) seconds.
main (int argc, char *argv[])
{
long usec;
usec = atol (argv[1]);
usleep (usec);
}