Hi,
I want to calculate the execution time in milliseconds of a code. what I wrote needs time.h, is there another way to do it without time.h:
clock_t start, end;
start=clock();
{
end=clock();
printf("execution time in milliseconds:%f\n", (end-start)/(double)clocks_PERS_SEC);
}
thanks a lot