Computer Science, asked by karanshah62, 6 months ago

. 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 guptaanya06
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