One aspect of programming that many tutorials don’t tell you upfront is the amount of looping and counting you’ll have to do. As such, any programming language worth its salt will offer ways to ...
"for(int i = 0; i < x; i ++){}". Compiled by gcc with -O2 option, we can get completely same object code from both of the above.