CPS 125 

				Alexander Ferworn

					LAB 9

Purpose: This lab is to give you practice in programming in C
with one-dimensional arrays.

a)   Please write a C language program with only a main function
to input a series of up to 150 integer values from a data file
lab9.data found in the course directory /home/t4a/cps125aa/lab9.
The program should first echo the data to the screen, at 10
values per line (except for possibly the final line), sort these
values in descending order using a simple sort, and
output them to the screen, again at 10 values per output line. 
Appropriately label the echo and output.  

b)   Write a C program to perform the sort as in part a), but
this time use one function to input and echo the data, another to
sort the data, and a third to output the sorted data.  All three
are invoked from the main function.