填空题
设有如下宏定义
#define MYSWAP(z,x,y) {z=x;x=y;y=z;}
以下程序段通过宏调用实现变量a、b内容交换,请填空。
float a=5,b=16,c;
MYSWAP(
1
,a,b);
1、
【正确答案】
1、c
【答案解析】
提交答案
关闭