I have a c++ code but i'm not sure how to convert it in c.?

Floyd Nuthugger

New member
Can someone please help me to convert this c++ code into C?

void delete_end_node()
{ node *temp1, *temp2;
if (start_ptr == NULL)
cout << "The list is empty!" << endl;
else
{ temp1 = start_ptr;
while (temp1->nxt != NULL)
{ temp2 = temp1;
temp1 = temp1->nxt;
}
delete temp1;
temp2->nxt = NULL;
}

-this code is for deleting the last node in 'linked list'.
thanks.
 
Back
Top