cout << "What do you wish to append?" << endl; cin >> line; list::append(char line[]); }
class list
{
public:
list();
~list();
int append(char line[]);
int remove(char line[]);
Now, the problem that it is referring to is the 4th line in the first set of code. I can't seem to find any idea why it keeps giving me that error or what to do to fix it, obviously. The second part of code is the declaration of the function I'm trying to call.

New Topic/Question
Reply




MultiQuote






|