Using C/C++, define a two dimensional integer array with 5 rows and 5 columns (a
ID: 642998 • Letter: U
Question
Using C/C++, define a two dimensional integer array with 5 rows and 5 columns (a total of 25 integers). Assign the array with random numbers between 10 and 100 using rand(); then define two arrays; S[5] and A[5] and use loops to calculate the sum and average of the numbers in each column the two dimensional array (i.e. numbers that have the same column index) , assign the results to S[5] and A[5], respectively. Output S[5] and A[5] results; finally, count the even integers of the array and output the result.