#include using namespace std; void printArray(int theArray[], int sizeOfArray); // prototype int main(){ int bucky[3] = {20,54,675}; int jessica[6] = {54,24,7,8,9,99}; printArray(bucky, 3); printArray(jessica, 6); } void printArray(int theArray[], int sizeOfArray){ for(int x = 0;x