• 2022-07-01
    若有定义int a=10,&b=a;则执行以下语句后a和b的值为( )++a;b--;//b自减
    A: a=10,b=10
    B: a=11,b=9
    C: a=11,b=9
    D: a=11,b=11