top | item 35398334

(no title)

somerando7 | 2 years ago

C++ was probably compiled without optimizations. In a compiled binary there won't even be any calculations done - see for yourself https://godbolt.org/z/Mhhzhdr7c

discuss

order

anandnair|2 years ago

I did it, and now c++ is slightly faster than Rust :)

Someone|2 years ago

But likely not at calculating that sum (which, nitpicking, isn’t “calculating the sum of 1M numbers”, but “calculating the sum of integers 1 through 1,000,000”), but at printing a constant.

It’s possible the C library you used is faster at converting this particular integer to a string (performance will vary between different ones, and not necessarily with one being always faster than the other) and writing it than rust’s one, but also possible that the C compiler did the string conversion at compile-time, too, and compiled a call to puts (if you printed a newline at the end of your string)

DemocracyFTW2|2 years ago

over here we never say more faster, instead we say fasterer or simply fasterrr