+91-85006-22255
What will be the output of the following program?
class ArrayOutput{ public static void main(String s[]) { int i[] = {12, 15, 16, 17, 19}; for(int i = 0; i < 5; i++) { System.out.println(i[i]); } }}
Topic: Learn Arrays And Loops
Read this topic Take test on this topic
Open In App