How to calculate the code execution time in C

1 Answer

0 votes
#include <stdio.h>
#include <time.h>

int main(void) {
   
    clock_t begin = clock();
    
    long sum = 0;
    for (long i = 0; i < 1000000; i++) {
            sum += i;
    }

    clock_t end = clock();
    double time_spent = (double)(end - begin) / CLOCKS_PER_SEC;
    
    printf("%f seconds", time_spent);

    return 0;
}




 
/*
run:
 
0.003128 seconds
 
*/

 



answered Sep 26, 2021 by avibootz

Related questions

1 answer 246 views
2 answers 142 views
3 answers 213 views
1 answer 303 views
2 answers 255 views
2 answers 279 views
1 answer 212 views
...