#include "Array.hpp" #include "Student.hpp" #define ARRAY_SIZE 10 using namespace std; int main() { Array a; for(int i=0; i b(a); cout << "--- Printing b ---\n"; cout << b << endl; Array sts; sts[0] = Student("Kate", 12345); sts[1] = Student("Nick", 12346); sts[2] = Student("Mary", 12347); sts[3] = Student("Susan", 12348); cout << "--- Printing sts ---\n"; cout << sts << endl; }