DammagedAgain
V I P
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
start_time = clock();
for(long i=0;i<1000000;i++){
num1 = rand();
num2=rand();
gcd1(num1,num2);
}
end_time = clock();
elapsed_time = (end_time - start_time) / CLOCKS_PER_SEC;
printf( "time is %.3f seconds\n", elapsed_time );
system("pause");
Code:start_time = clock(); for(long i=0;i<1000000;i++){ num1 = rand(); num2=rand(); gcd1(num1,num2); } end_time = clock(); elapsed_time = (end_time - start_time) / CLOCKS_PER_SEC; printf( "time is %.3f seconds\n", elapsed_time ); system("pause");