I was just wondering if anyone had any advice as to how I can increase the precision of my timer functions? I simply call start timer before an arbitrary function I want timed, and then call stop timer.
It seems that my precision is limited to milliseconds with time.h and the clock() (or is it?): elapsed = ((double) (stop - start) * 1000) / CLOCKS_PER_SEC;