Multiple choice c consider the following statement:while ( 3 ) ; Infinite loop Syntax error Executes only 3 iterations Executes only 4 iterations Reveal answer Fill a bubble to check yourself A Correct answer Explanation In C, any non-zero integer is considered true. Therefore, while(3) evaluates to true, and since the loop body is empty (just a semicolon), it loops indefinitely.