Create an array of 300 integers, and initialize the array to the
values 0 - 299. Write a loop that calls your linear search function 10,000
times to find a randomly generated key. Eliminate print statements
from your program. Include the header file time.h and put a call to
srand(time(NULL));
at the start of your main() so that the random sequence is different
each time. Time your program as follows:
> time a.out
1.20u 0.00s 0:01.23 98.3%
This is a use of the Unix time function. The first number is
the number we care about: the amount of time we used the CPU.
Do this three times.