单项选择题

执行下列语句的结果为______。
i=3;
printf("%d,",++i);
printf("%d",i++);

A.3,3
B.3,4
C.4,3
D.4,4