One issue that I see is that they only (seem) to compare with gcc, which is not particularly good. It would be better to compare against something like icc, which has better register coloring, SIMD support, etc. This might redeem C a little. However, the real reason C will not go away any time soon is that there is no replacement for low-level software yet. Nothing eles has quite the same minimal dependencies.
GCC C vs Intel Fortran : http://shootout.alioth.debian.org/u64/benchmark.php?test=all... Intel C vs Intel Fortran : http://shootout.alioth.debian.org/gp4/benchmark.php?test=all... (I'm not even going to link to the GCC Fortran benchmarks. They're embarrassing.) C is no slower than Fortran on any of those benchmarks, and on some it cleans Fortran's clock. The aliasing issue is the only thing Fortran has going in its f…
It was quite strange the first time looking through the objdump seeing things like punpwlkd and xmm.
And then discovering what -fast would do to things (it makes icc look at your whole program to optimize, so it does things like ignore CDECL and uses whatever registers it can.