What is the output of this program? Class alligator { public static void main(string[] args) { int []x[] = {{1,2}, {3,4,5}, {6,7,8,9}}; int [][]y = x; system.Out.Println(y[2][1]); } } compilation error 7 3?
Answers
Answered by
0
the program would show an error as "class" should be writing in small case
Similar questions