Tagged Questions

15
votes
4answers
8k views

What is the best way to measure execution time of a function?

Obviously I can do and DateTime.Now.After - DateTime.Now.Before but there must be something more sophisticated. Any tips appreciated.
2
votes
4answers
312 views

Timing program execution

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.
1
vote
3answers
97 views

why are sub routine arguments slower to use than outer variables?

Running the following code : use strict; use warnings; use Benchmark; my $defaultArray = [1,2,3,4]; sub VARIABLE { my $arrayref = @_ ? $_[0] : $defaultArray; return ...
1
vote
3answers
508 views

For simple C cmd programs: how to add “program executed in 12,345 seconds”?

I'm a windows user, and I'm learning C. I use Codeblocks and visual c++ 2008 express at home to write simple C command line programs (I'm a beginner) and I find really useful when codeblocks adds a ...