Created
September 10, 2013 07:17
-
-
Save yhyacinth/6506000 to your computer and use it in GitHub Desktop.
elapsed time
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <time.h> | |
clock_t start_time, end_time; | |
start_time=clock(); | |
end_time=clock(); | |
printf("Time : %f\n", ((double)(end_time-start_time)) / CLOCKS_PER_SEC); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment