[SOLVED] CSE107-Lab 8

20.99 $

Category:

Description

Rate this product

Write a C program that performs the task described below.

1 Task

  • Create a 2D integer array at size 10×10
  • 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.