The last example in this section that jumped back to begin
could be better
written using a loop. Rewrite the code to eliminate the goto
.
begin:
int sz = get_size();
if (sz <= 0)
goto begin;
for (int sz = get_size(); sz <= 0; sz = get_size())
; // null statement