Is there any way to display on the screen the amount of time it took to run a particular program?
--- C
__________________________________________________ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/
Cyelee Kulkarni wrote:
Is there any way to display on the screen the amount of time it took to run a particular program?
Though this is a little OT, there's `time':
% time sleep 1 real 0m1.006s user 0m0.010s sys 0m0.000s
Frank