单项选择题

设单链表中指针p指向结点m,若要删除m之后的结点(若存在),则需修改指针的操作为()

A.p->next=p->next->next;  
B.p=p->next; 
C.p=p->next->next;    
D.p->next=p;