以下程序的输出结果是(    )。
#include
void main( ) 

    int a=10,b=10;
    printf("%d,%d\n", --a, ++b);
}
A、9,11
B、8,9
C、10,10
D、9,8