单项选择题

有以下程序
main()
int m=12,n=34;
printf("%d%d",m++,++n);
printf("%d%d\n",n++,++m);
)
程序运行后的输出结果是

A.12353514
B.12353513
C.12343514
D.12343513