Question
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
#include <stdio.h>#include <math.h>
#include <time.h>
#define NO_OF_ROWS 3 //declaration of used constants
#define NO_OF_COLS 5
#define MINIMUM 1 // we consider the numbers being positive- it is not a must though
#define MAXIMUM 10000 //max value of the range of numbers
int main(void)
{
int vector[NO_OF_ROWS][NO_OF_COLS];
int row;
int col;
int value_cell;
int i;
int min = MAXIMUM; //we initialize the extreme values conversely in order to be sure
int max = MINIMUM; //of finding the actual min and max values
int average = 0;
srand(time(NULL));...