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

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