Posts by Emmanuel Argollo • 31 points
1 post
-
3
votes2
answers2720
viewsA: How can I measure the execution time of a program in c++?
You can calculate the runtime of functions using C++11 with high precision using the library <chrono>. Ex: auto inicio = std::chrono::high_resolution_clock::now(); ...SEU CÓDIGO AQUI... auto…
c++answered Emmanuel Argollo 31