#include <iostream>
#include <string>
using namespace std;
/* ******************** getSize ********************
asks user for size
size saved in calling function via reference parameter
*/
void getSize(int);
/* ******************** getSpace ********************
gets an array whose size is chosen by the user
size saved in calling function via reference parameter
*/
void getSpace(int);
/* ******************** inputData ********************
gets data collected by the user's inputs
size saved in calling function via reference parameter
*/
void inputData(int[], int);
/* ******************** printData ********************
prints the strings, one per line
size saved in calling function via reference parameter
*/
void printData(int[], int);
/* ******************** destroy ********************
returns all space to the heap
size saved in calling function via reference parameter
*/
void destroy(int* ptr);