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,941 questions

51,879 answers

573 users

How to run while loop for N seconds in C++

1 Answer

0 votes
#include <iostream>
#include <chrono>
#include <thread>

int main() {
    auto starttime = std::chrono::system_clock::now();
    std::chrono::seconds seconds(3);
    auto endtime = starttime + seconds;

    while (std::chrono::system_clock::now() < endtime) {
        std::this_thread::sleep_for(std::chrono::seconds(1));
        std::time_t current_time = std::chrono::system_clock::to_time_t(std::chrono::system_clock::now());
        std::cout << std::ctime(&current_time);
    }
}


/*
run:

Fri Oct 11 07:10:55 2024
Fri Oct 11 07:10:56 2024
Fri Oct 11 07:10:57 2024

*/

 



answered Oct 11, 2024 by avibootz

Related questions

1 answer 618 views
618 views asked Nov 30, 2019 by avibootz
1 answer 105 views
1 answer 97 views
1 answer 105 views
1 answer 96 views
2 answers 138 views
2 answers 136 views
...