get time to complete code c by [ad_1] get time to complete code cclock_t begin = clock(); /* here, do your time-consuming job */ clock_t end = clock(); double time_spent = (double)(end - begin) / CLOCKS_PER_SEC;[ad_2] Please Share