Question: Write a C/C++ program that does the following: declare an array of integers (size is your choice)--your program should work with any array size call
Write a C/C++ program that does the following:
- declare an array of integers (size is your choice)--your program should work with any array size
- call an assembly function to compute the average of all elements in the array (pass the array and the size of the array)
- call an assembly function to compute the largest (max) of all elements in the array (pass the array and the size of the array)
- call an assembly function to compute the smallest (min) of all elements in the array (pass the array and the size of the array)
- display the average, min, and max
Step by Step Solution
3.27 Rating (142 Votes )
There are 3 Steps involved in it
include function prototypes 05 int minimum const int values sizet nu... View full answer
Get step-by-step solutions from verified subject matter experts
