Altera_Forum
Honored Contributor
7 years agoTimer
HI
Please I need ur help I wanna print :'HELLO WORD " 100000 TIMES and then I wanna print how many time it takes thank uHI
Please I need ur help I wanna print :'HELLO WORD " 100000 TIMES and then I wanna print how many time it takes thank uHi,
Check Following code,#include <stdio.h># include <time.h>
int main()
{
// Calculate the time taken by fun()
clock_t t;
t = clock();
for(int i=0;i<100000;i++)
{
printf("HELLO WORD %d\n",i);
}
t = clock() - t;
double time_taken = ((double)t)/CLOCKS_PER_SEC; // in seconds
printf("loop() took %f seconds to execute \n", time_taken);
return 0;
} Result: HELLO WORD 99997
HELLO WORD 99998
HELLO WORD 99999
loop() took 0.156086 seconds to execute
Best Regards Vikas Jathar (This message was posted on behalf of Intel Corporation)