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

1