Forum Discussion
Altera_Forum
Honored Contributor
8 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 u1 Reply
- Altera_Forum
Honored Contributor
Hi,
Check Following code,
Result:#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; }
Best Regards Vikas Jathar (This message was posted on behalf of Intel Corporation)HELLO WORD 99997 HELLO WORD 99998 HELLO WORD 99999 loop() took 0.156086 seconds to execute