. Correct errors (if any) in the following program code
and then write the output:
int y = 3;
for ; y<= 13, y == 4)
System.out.println(y),
System.out.println(y);
Answers
Answered by
0
Answer:
errors:
int y = 3;
for(y=3;y<= 13; y = 4)
System.out.println(y);
System.out.println(y);
O/P
3
4
4
4 endless 4s
Similar questions