Answers for "how to pause the program in C"

C
-1

programming c pause

#include <unistd.h>

int main (){
  	// your code here
	sleep(3); // will stop during 3 seconds
  	// your code
}
Posted by: Guest on March-29-2021

Code answers related to "C"

Browse Popular Code Answers by Language