#include "student.h" #include
using std::cout; int main() { Student st("Bill Jones", "Zoology"); Student st2("John Adams", "Political Science"); cout << st << st2; }