猿问

哪位大神帮个忙,谢谢啦!

【题目:请定义一个函数式宏定义swap(type,a,b)以使type型的2值互相转换。(假设a=5,b=10,最后输出a=10,b=5)】


#include<stdio.h>

#define swap(type,a,b) (z=a; a=b; b=z;)


int main()

{

int x,y;

int z=0;

scanf("%d %d",&x,&y);

printf("x=%d,y=%d,z=%d\n", swap(int,x,y) );

return 0;

}


儚三姩
浏览 1151回答 1
1回答

KevenHuang

<?php //用php来给你做个示范,思路是一样的 function swap($x,$y){     $tmp = $x;     $x = $y;     $y = $tmp;     return array('x'=>$x,'y'=>$y); } print_r(swap(1,10)); ?>
随时随地看视频慕课网APP
我要回答