#include using namespace std; const int MAX_SIZE = 5; void PrintArray(const int ary[]); int main() { int a[MAX_SIZE]{1,2,3,4,5}; int b[MAX_SIZE]{6,7,8,9,0}; PrintArray(a); cout << "a is " << a << endl; if (a < b) { cout << "A is smaller " << endl; } else { cout << "B is smaller" << endl; } return 0; } void PrintArray(const int ary[]){ int i; for(i = 0; i < MAX_SIZE; i++) { cout << ary[i] << endl; } return; }