填空题

设有如下宏定义
#define MYSWAP(z,x,y)z=x;x=Y;Y=z;
以下程序段通过宏调用实现变量a、b内容的交换,请填空。
float a=5,b=16,c;
MYSWAP( 【15】 ,a,b) ;

【参考答案】

c