+91-85006-22255
What will be the output of the following program?
public class ArrayAccesing { public static void main(String[] args) { int[] input = new int[3]; for (int j = 0; j <= input.length; j++) { System.out.println(input[j] + " " + j); } }}
Topic: Learn Arrays And Loops
Read this topic Take test on this topic
Open In App