Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,884 questions

51,810 answers

573 users

How to measure loop execution time (GCC) in C

1 Answer

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

int main() {
    long sum = 0;
    
    clock_t begin = clock();
    for (int i = 0; i < 10000000; i++) {
        sum += i;
    }
    clock_t end = clock();
    double time_spent = (double)(end - begin) / CLOCKS_PER_SEC;
    printf("%f sec\n", time_spent);

    int i = 0;
    sum = 0;
    
    begin = clock();
    while (i < 10000000) {
        sum += i;
        i++;
    }
    end = clock();
    time_spent = (double)(end - begin) / CLOCKS_PER_SEC;
    printf("%f sec\n", time_spent);

    return 0;
}




/*
run:

0.029202 sec
0.029534 sec

*/

 



answered May 29, 2023 by avibootz

Related questions

1 answer 227 views
1 answer 178 views
2 answers 137 views
1 answer 221 views
221 views asked Apr 5, 2019 by avibootz
1 answer 155 views
155 views asked Feb 21, 2022 by avibootz
1 answer 292 views
4 answers 285 views
...