You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// int table2[][] = new int[3][5]; It is only after the the creation of a instance of two dimensional that table2 is linked with a real array. Textbook page 163.
// table2 = { {2, 4, 6, 8, 10}, {12, 14, 16, 18, 20}, {22, 24, 26. 28, 30} }; // Arrays can be initialized when they are created. But in this case, this is a duplicate initialization for table2. Textbook page 165.