Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,821 answers

573 users

How to stop endless loop after N seconds in C

2 Answers

0 votes
#include <stdio.h>
#include <unistd.h>

int main(void) {
	int i = 1;
	int N = 3;
	
	while (1) {
		printf("%d\n", i);
		i++;
		sleep(1);
		if (i > N) break;
	}

    return 0;
}   
     
	 
	 
/*
run:
     
1
2
3
     
*/

 



answered Nov 30, 2019 by avibootz
0 votes
#include <stdio.h>
#include <unistd.h>

int main(void) {
	int i = 1;
	int N = 3;
	
	for(;;) {
		printf("%d\n", i);
		i++;
		sleep(1);
		if (i > N) break;
	}

    return 0;
}   
     
	 
	 
/*
run:
     
1
2
3
     
*/

 



answered Nov 30, 2019 by avibootz

Related questions

1 answer 618 views
618 views asked Nov 30, 2019 by avibootz
1 answer 99 views
1 answer 145 views
1 answer 84 views
1 answer 104 views
...