$25
Write a C program that performs the task described
1 Task
• Create a 2D integer array at size 10x10
• Fill this array with randomly generated numbers between 20 and 99
• Print it to console in row-wise format
• Add the sum of each column to a 1D array[1]
• Print the 1D array
[1] Each element in 1D array will hold the sum of all the elements in corresponding column in 2D array.