Home > Java Programming > Language Fundamentals > Questions and Answers
Q: |
What will be the output of the program? public class TestDogs { public static void main(String [] args) { Dog [][] theDogs = new Dog[3][]; System.out.println(theDogs[2][0].toString()); } } class Dog { } | ||||||||||
|
Comment on this Question | |
Name: | |
|