#include #include #include #include #include "Student.hpp" int main() { std::pair peter_pan( Student("Peter Pan", 1234), std::string("Wendy House, Neverland") ); std::pair mickey_mouse = make_pair( Student("Mickey Mouse", 1235), std::string("Walt Disney World Communications, P.O Box 10040, Lake Buena Vista, Florida 32830-0040 ") ); std::cout << peter_pan.first << " -> " << peter_pan.second << std::endl; std::cout << mickey_mouse.first << " -> " << mickey_mouse.second << std::endl; }