填空题 以下程序运行后的输出结果是 1
   #include<stdio.h>
   void ast(int x,int y,int*cp,int*dp)
   {  *cp=x+y;  *dp=x-y;  }
   main()
   {int a=4,b=3,c,d;
    ast(a,b,&c,&d);
    printf("c=/%d,d=/%d\n",c,d);
   }
  • 1、
【正确答案】 1、c=7,d=1    
【答案解析】