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

51,831 answers

573 users

How to measure time in milliseconds using C++

2 Answers

0 votes
#include <iostream>
#include <chrono>
 
int main() {
    auto startTime = std::chrono::high_resolution_clock::now();
 
    for (int i = 0; i < 400000000; i++);
 
    auto estimatedTime = std::chrono::duration_cast<std::chrono::milliseconds>(
                            std::chrono::high_resolution_clock::now() - startTime).count();
 
    std::cout << estimatedTime << " milliseconds" << std::endl;
}
 
 
 
/*
run:
 
243 milliseconds
 
*/

 



answered Jun 28, 2024 by avibootz
edited Jun 28, 2024 by avibootz
0 votes
#include <iostream>
#include <chrono>
 
int main() {
    auto startTime = std::chrono::high_resolution_clock::now();
 
    for (int i = 0; i < 400000000; i++);
     
    auto endTime = std::chrono::high_resolution_clock::now();
 
    auto estimatedTime = std::chrono::duration_cast<std::chrono::milliseconds>(endTime - startTime).count();
 
    std::cout << estimatedTime << " milliseconds" << std::endl;
}

 
 
 
/*
run:
 
252 milliseconds
 
*/

 



answered Jun 28, 2024 by avibootz
edited Jun 28, 2024 by avibootz

Related questions

2 answers 140 views
140 views asked Jun 28, 2024 by avibootz
1 answer 96 views
1 answer 109 views
1 answer 119 views
2 answers 154 views
1 answer 117 views
2 answers 115 views
115 views asked Jun 28, 2024 by avibootz
...