Answers for "sleep function in c is not working"

C
0

sleep function in c

#include <unistd.h>

unsigned sleep(unsigned seconds);
Posted by: Guest on January-20-2021
-1

use sleep in c in windows

#include <Windows.h>
 
int main()
{
    Sleep(500);
}
Posted by: Guest on December-11-2020

Code answers related to "C"

Browse Popular Code Answers by Language