单项选择题

顺序栈s,栈顶指针是top指向栈顶元素,用e接收出栈元素,则出栈正确的是()

A.s[--top]=e;
B.e=s[++top];
C.e=s[top--];
D.s[++top]=e;