stackoverflow.com/questions/24848359/which-is-faster-while1-or-while2

This was an interview question asked by a senior manager.

Which is faster?

while(1) { // Some code }

or

while(2) { //Some code }

I said that both have the same execution speed, as ...


Comments (0)

Sign in to post comments.