5SpeedDeasil@lemmy.world to Memes@lemmy.ml · 1 year agoRandom internet people explaining math better then math teacheri.imgur.comimagemessage-square206fedilinkarrow-up11.74Karrow-down162
arrow-up11.68Karrow-down1imageRandom internet people explaining math better then math teacheri.imgur.com5SpeedDeasil@lemmy.world to Memes@lemmy.ml · 1 year agomessage-square206fedilink
minus-squarePitri@lemmy.blahaj.zonelinkfedilinkarrow-up10·1 year agothere is no reason for a (non-foreach) for loop to be any more or less finite than a while loop. for (a; b; c) { d; } is just syntactic sugar for { a; while (b) { d; c; } } in most or all languages with c-like syntax.
there is no reason for a (non-foreach) for loop to be any more or less finite than a while loop.
for (a; b; c) { d; }
is just syntactic sugar for
{ a; while (b) { d; c; } }
in most or all languages with c-like syntax.