here is what I have for my second class
class Tournament:public Golfer
{ private:
int total_score[];
public:
void compute_total();
void sort_name();
void final_score();
};
the golfer class has every golfer name and score in it. I just need to find a way for the tournament class to access the data. My project compiles and runs fine. it just dosent output the data sorted in the tournament class. The cout's in the tournament class work fine though.
Thank you