incluyes la librería time, y simplemente almacenas el tiempo al iniciar, luego al finalizar...
un ejemplo de stackoverflow
un ejemplo de stackoverflow
Código (cpp) [Seleccionar]
#include <ctime>
void f() {
using namespace std;
clock_t begin = clock();
code_to_time();
clock_t end = clock();
double elapsed_secs = double(end - begin) / CLOCKS_PER_SEC;
}