Ok so this is an extra credit lab i have for any missed lab or replace for our lowest lab score for anyone has in the class. I'm not sure what im suppose to do with it the teacher just emailed us this info. If anyone can direct me to what im suppose to be writing about would be appreciated, lab is due wednesday, so ill be posting updates on what i have done
#include <iostream>
#include <iomanip>
using namespace std;
//prototypes for functions for lab10
int empty_array_insert(int[], int);
void display_in_reverse(int[], int);
void main()
{
//local constants
const int SIZE = 5;
//local variables
int Numbers[SIZE]; //array to store input values
int Count; //number of values in the array
/***********************************************************/
//call function to input numbers into the empty array
Count = empty_array_insert(Numbers, SIZE);
//clear the screen
system("cls");
//display the values in the array
cout << "/n/n/n";
cout << setw(43) << "Numbers" << endl;
cout << setw(43) << "-------" << endl << endl;
display_in_reverse(Numbers, Count);
}//end main
/*** put your functions (with prologues) here **************/