Answers for "sleep(1) in c"

C
6

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

sleep in c programming

#include <stdlib.h>
#include <stdio.h>
// this library provides sleep() function.
#include <unistd.h>
int main()
{  
	printf("sleeping");
	sleep(5);
	printf("nWoke up");  
}
Posted by: Guest on February-01-2022
1

how to sleep in c

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
 
int main(){
  
	printf("Sleeping for 5 seconds n");
	sleep(5);
	printf("Sleep is now over n");  
}
Posted by: Guest on March-03-2020
0

sleep function in c

#include <unistd.h>

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

Code answers related to "C"

Browse Popular Code Answers by Language