struct contact_node
{
char * first_name;
char * last_name;
int phone_number;
char * address;
char * email;
int fax_number;
call_list calls_made;
contact_node * next;
};
trying to call member function through the type (call list) instead of through the variable (calls_made)
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment