delay c 2b 2b

Solutions on MaxInterview for delay c 2b 2b by the best coders in the world

showing results for - "delay c 2b 2b"
Luigi
07 Jun 2020
1//in Win32
2#include<windows.h>
3Sleep(milliseconds);
4
5//in Unix
6#include<unistd.h>
7unsigned int microsecond = 1000000;
8usleep(3 * microsecond); //sleeps for 3 seconds
9sleep(3);
Cristina
15 Jul 2017
1#include<windows.h>
2Sleep(milliseconds);
3