设单链表中指针p指着结点a,若要删除a之后的结点(若存在),则需要修改指针的操作为()
A:p->next=p->next->next
B:p=p->next
C:p= p->next->next
D:p->next=p
出自:计算机科学