Answers for "use sleep in c in windows"

C++
4

sleep in c programming

//sleep function provided by <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
 
int main(){
  
	printf("Sleeping for 5 seconds \n");
	sleep(5);
	printf("Wake up \n");  
}
Posted by: Guest on June-03-2020
-1

use sleep in c in windows

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

Browse Popular Code Answers by Language