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