单项选择题

以下程序段给数组所有的元素输入数据,请选择正确答案填入。
#include<stdio.h>
main()

int a[10]=0;
while(i<10)scan("%d"______);



A) a+(i++) B) &a[i+1] C) a+i D) &a[++i]