Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <time.h>
- clock_t start = clock();
- /* Codice da calcolare */
- printf("Tempo trascorso in secondi: %f\n", ((double)clock() - start) / CLOCKS_PER_SEC);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement