//Kyu Bae //Program 17A //4-12-00 //Purpose: //1) Write member functions for a class. //2) Write a program which instantiates class objects. //3) Reinforce objectives of previous lab projects. #include "Student.h" #include #include //constructor;some of the variables are initialized here as default. Student::Student() { strcpy(LastName, "No Last Name"); strcpy(FirstName, "No First Name"); strcpy(StreetAddress,"No Address"); strcpy(City, "No City"); ZipCode=0; AreaCode=0; PhoneNo=0; cout<<"In the generic object"<