- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
HI
Please I need ur help I wanna print :'HELLO WORD " 100000 TIMES and then I wanna print how many time it takes thank uLink Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
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)
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page