Question: int delete(NODE **startp, char *name); this deletes a node with RECORD data of the name from the linked list and returns 1 if successful or
- int delete(NODE **startp, char *name); this deletes a node with RECORD data of the name from the linked list and returns 1 if successful or 0 otherwise.
- void clean(NODE **startp); this cleans the whole linked list.
I need help with this please !
int delete(NODE **startp, char *name) { // your code }
void clean(NODE **startp) { // your code }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
