THIS IS AN INFINITE LOOP. CONSIDER THE UPDATE EXPRESSION, I = I *...

33. This is an infinite loop. Consider the update expression, i = i * 2. It cannot change ibecause its initial value is 0, so it leaves i at its initial value, 0. It gives no output because of the semicolon after the first line of the for loop.