Computer Science A - recSmall - 12/17/99 Directions: Write a program that will fill a vector with integers. The size of the vector is to be determined by the user. The vector components are determined by the random function within #include. Finally the program will make use of a recursive function in order to find the smallest element in the vector. Sample Run: Please enter array size: 5 The elements of the vector are: 40 20 12 76 88 Smallest vector value is: 12 Prototypes: void getData(apvector& numbers); int smallest(const apvector& numbers, int size); void display(const apvector& numbers);