• 2022-05-30
    以下程序的输出结果是( )main(){ int a=10,b=10;printf(“%d,%d”++a,b--);}
    A: 10,10
    B: 11,10
    C: 11,11
    D: 10,11