• 2021-04-14
    以下程序的输出结果是( )。 #include void fun(int x,int y,int *cp,int *dp) { cp=x+y; //*cp=30+50=80 dp=x-y; //*dp=30-50=-20 } void main() { int a,b,c,d; a=30,b=50; fun(a,b,&c,&d); cout< 80,-20