//File : Quiz.cpp //Author : Andre Long //Due : October 18, 2004 //Description : This file holds the function definitions for the cow class #include #include"Quiz5.h" //************************************************************************ // Overloaded Operator= * //************************************************************************ cow& cow::operator= (const cow &c) { name = c.name; *hobby = *c.hobby; weight = c.weight; return *this; } void cow::showcow()const { cout<