+ 1
How to make stopwatch in c++
Stopwatch
2 Respostas
+ 11
A hint would be to look into <ctime> or <chrono>.
Get the time upon begin point, then store it inside a variable. Get the time upon completion point and store it inside another variable. Deduct the latter with the former, and convert to seconds.
+ 9
It's better to use modern time libraries, like <windows.h>, which are more precise than <ctime> :)