While loop question

Well, there’s an argument that while is a simpler form of for :wink:

eg. these are equivalent

while (<condition>) { }
for ( ; <condition> ; ) { }
1 Like