The for statement which can precede a loop to be executed 50 times or

Loading

โœช Choose the correct option.

The for statement which can precede a loop to be executed 50 times or till a boolean variable

A. for (i = 0; i < = 50 || found== false; i++)
B. for (i = 0; i < 50 ||found == true; i++)
C. for (i = 1; i <= 50 && found == true; i++)
D. None of these

Leave a Comment