write a program of find the maximum value an array of n integers
Answers
Answered by
2
Answer:
The program output is also shown below.
* C program to read N integers into an array A and.
* a) Find the sum of all numbers.
* b) Find the average of all numbers.
* Display the results with suitable headings.
int size, i, largest;
printf("\n Enter the size of the array: ");
scanf("%d", &size);
int array[size];
Explanation:
MARK ME AS BRAINLIST..
Similar questions