Fill in the blank so this code compiles and does not cause an infinite loop.
t: while (true) { f: while(true) { ______ } }
C.
Option A breaks out of the inner loop, but the outer loop is still infinite.
Option B has the same problem.
Option C is correct because it breaks out of both loops.