Name: ________________________________ Section: _________________
Honor Code Acknowledgment: ___________________
Due: October 31 (Very Scary)
8 5 + 3 2 * - 7 *
void Chop(ListNode * & list)
{
if (list != NULL)
{
Chop(list->next);
if (list->info % 2 == 0)
{
list = list->next;
}
}
}