Program 3
Beginning Statistical System with Functions
Due: Monday, March 9
Write an assembler language program with the following 3 functions:
- Read in up to 100 integer values into an array. The last value read
in will be -99. Do not include -99 in your array. Of course, you
will need to count how many values you read in (be sure you don't include the
-99 in the count). The function will return the count of values read in.
The arguments passed will be the address of the array and the size of the
array.
- Find the mode.
- The mode function would first call the sort function. Then compute
the mode.
The main will then print out the mode