como medir tiempo de ejecucion cpp

Solutions on MaxInterview for como medir tiempo de ejecucion cpp by the best coders in the world

showing results for - "como medir tiempo de ejecucion cpp"
Greta
10 May 2017
1#include <iostream>
2#include <ctime> 
3 
4unsigned t0, t1;
5 
6t0=clock()
7// Code to execute
8t1 = clock();
9 
10double time = (double(t1-t0)/CLOCKS_PER_SEC);
11cout << "Execution Time: " << time << endl;
12