I have a project written in C and I would like to know if there is a simple way to profile its execution time and memory usage under Windows.

Thanks in advance.

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted
+200

You can launch process monitor, run your program, and then go back to procmon and use Tools/Process Activity Summary to have an overview of the time and memory used by your program.

link|improve this answer
feedback

Timing information is easy enough: create a .bat file invoking the program, output the current system time before the program starts and after it ends...something like this in pseudocode:

print system time
execute program
print system time

As for memory consumption, I would say it's a bit more involved, although definitely doable. You might try something along these lines...

link|improve this answer
feedback

Use PARASOFT INSURE++

Downlaod the Free-Trial here...

http://www.parasoft.com/jsp/products/insure.jsp;jsessionid=baa-n8_lkqOzsA

GOOD LUCK!!

link|improve this answer
feedback

If you need more detailed profiling information about execution times of various parts of the program, I have had good luck with the Very Sleepy Profiler. It is simple to install and gives good information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.