Created
February 7, 2010 07:20
-
-
Save rahulkmr/297273 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$> gcc -o fib -O3 fib.c | |
$> time ./fib_num | |
165580141 | |
real 0m1.452s | |
user 0m1.448s | |
sys 0m0.000s | |
$> javac FibNum.java | |
$> time java -server FibNum | |
165580141 | |
real 0m1.818s | |
user 0m1.672s | |
sys 0m0.036s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment