Question: Consider the following C code that measures the execution time of a function: #include #include void functionToBeTimed ( ) { / / Code to be
Consider the following C code that measures the execution time of a function:
#include
#include
void functionToBeTimed
Code to be timed
int count ;
for int i ; i ; i
count;
int main
struct timeval starttime, endtime;
double executiontime;
Measure execution time
gettimeofday&starttime, NULL; Start timing
functionToBeTimed;
gettimeofday&endtime, NULL; Stop timing
Calculate execution time in seconds
executiontime endtime.tvsec starttime.tvsec
endtime.tvusec starttime.tvusec;
printfExecution Time: f seconds
executiontime;
return ;
What is the purpose of the gettimeofday calls in this code?
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
