30 September 2024 02:20:30 PM arrays_test(): C version Set up a matrix with 5 rows and 4 columns. test_a(): Use 'int a[5][4]' to create a doubly dimensioned array. Show how to assign values. Show we can use [i][j] double index to inspect values. The matrix A[][]: i j k A[i][j] 0 0 0 11 0 1 1 12 0 2 2 13 0 3 3 14 1 0 4 21 1 1 5 22 1 2 6 23 1 3 7 24 2 0 8 31 2 1 9 32 2 2 10 33 2 3 11 34 3 0 12 41 3 1 13 42 3 2 14 43 3 3 15 44 4 0 16 51 4 1 17 52 4 2 18 53 4 3 19 54 arrays_test(): Normal end of execution. 30 September 2024 02:20:30 PM