I need to find how long it takes to execute a bunch of code. I've tried using clock() but it's just not accurate enough for the small functions (it says 0 cycles have passed). I heard of gprof but that only seems to be for Linux. The version of Visual Studio I have doesn't have the profiling feature (it's only for professional and enterprise editions). Is there another way of doing this?
Thanks