Lewis Lu
0
Q:

time function c++

#include <chrono> 
using namespace std::chrono; 

auto start = high_resolution_clock::now(); 

// perform function to be timed here...

auto stop = high_resolution_clock::now(); 
cout << duration_cast<microseconds>(stop - start).count() << endl; 
80
/* Answer to: "time function c++" */

#include <chrono> 
using namespace std::chrono; 

auto start = high_resolution_clock::now(); 
auto stop = high_resolution_clock::now(); 
auto duration = duration_cast<microseconds>(stop - start); 
  
cout << duration.count() << endl; 
3

New to Communities?

Join the community