$29
Write a C program that performs the task described below. Name your c le as nameSurnameId.c [ex: basakKarakas1850044026.c]
Upload your le to your section’s submission page on moodle.
• 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 array1
◦ Print the 1D array
Good luck :)
• Each element in 1D array will hold the sum of all the elements in corresponding column in 2D array.
1