Home > Java Programming > Flow Control > Questions and Answers
Q: |
What will be the output of the program? int i = O;
while(1) { if(i == 4) { break; } ++i; } System.out.println("i = " + i); | ||||||||||
|
Comment on this Question | |
Name: | |
|