+91-85006-22255
What will be the output of the following program?
public class IntelInside{ public static void main(String[] args) { int j = 6; for (int i = 0, j = 5; i < 5; i++, j--) { System.out.print(i + " " + j + ", "); } }}
Topic: for Loop In Java
Read this topic Take test on this topic
Open In App