单项选择题

有以下程序
main()
int m=3,n=4,x;
x=-m++;
x=x+8/++n;
printf("%d\n",x);

程序运行后的输出结果是______。

A) 3
B) 5
C) -1
D) -2