Hi i have this error in my program relating to the line
could someone tell me what the possable error is with this or what else.Code:itemcount(struct list *robotcommand);
Printable View
Hi i have this error in my program relating to the line
could someone tell me what the possable error is with this or what else.Code:itemcount(struct list *robotcommand);
If it is supposed to be a function declaration, you need to have a return type.
However, if you are trying to call the function itemcount, there is no need to specify the datatype.Code:void itemcount(struct list *robotcommand);
Code:itemcount(robotcommand);