单项选择题

顺序栈s,栈顶指针是top指向栈顶元素,要入栈的元素是e,则入栈正确的是()

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