单项选择题

以下程序的输出结果是( )。
int a=7,b,C;
b=++a;
C=a++;
printf("%d,%d,%d",a,b,C);

A.7,8,9
B.7,9,9
C.9,8,8
D.8,7,8