[SOLVED] In C load a 3 by 3 integer array with random numbers between 1 - 99

29.99 $

Programming resource
Digital learning resource

In C load a 3 by 3 integer array with random numbers between 1 – 99. after each bullet code, make your program display the appropriate data. For instance after the bullet to find the lowest number in each row, make it print the data after each row is processed. ignore the directions about methods and returning. all bullets are coded in one program.The program should have the following functions:
getTotal. This function should accept a two-dimensional array as its argument & return the total of all the values in the array.
getAverage. This function should accept a two-dimensional array as its argument & return the average of all the values in the array.
getRowTotal. This function should accept a two-dimensional array as its first argument & an integer as its second argument. The second argument should be the subscript of a row in the array. The function should return the total of the values in the specified row.
getColumnTotal. The function should return the total of the values in the specified column.
getHighestInRow. The function should return the highest value in the specified row of the array.
getLowestInRow. The function should return the lowest values in the specified row of the array.
row 1 lowest number: 56
row 2 lowest number: 2 etc.
make sure and print your matrix out in a 3 by 3 box before any of the other processes and displays.

Category:
Practical programming resource
Suitable for guided study and reference
Tutor guidance available when needed

Description

Rate this product

In C load a 3 by 3 integer array with random numbers between 1 – 99. after each bullet code, make your program display the appropriate data. For instance after the bullet to find the lowest number in each row, make it print the data after each row is processed. ignore the directions about methods and returning. all bullets are coded in one program.The program should have the following functions:
getTotal. This function should accept a two-dimensional array as its argument & return the total of all the values in the array.
getAverage. This function should accept a two-dimensional array as its argument & return the average of all the values in the array.
getRowTotal. This function should accept a two-dimensional array as its first argument & an integer as its second argument. The second argument should be the subscript of a row in the array. The function should return the total of the values in the specified row.
getColumnTotal. The function should return the total of the values in the specified column.
getHighestInRow. The function should return the highest value in the specified row of the array.
getLowestInRow. The function should return the lowest values in the specified row of the array.
row 1 lowest number: 56
row 2 lowest number: 2 etc.
make sure and print your matrix out in a 3 by 3 box before any of the other processes and displays.

Resource details

Understand the Task Before You Use the Resource

Review the requirements, identify the programming concepts involved, study the implementation and test your understanding with your own examples and modifications.