A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区
传智教育官网黑马程序员官网
只需一步,快速开始
CesC
中级黑马
黑马币:6
帖子:94
精华:0
© CesC 中级黑马 / 2015-7-26 14:46 / 457 人查看 / 0 人回复 / 0 人收藏 转载请遵从CC协议 禁止商业使用本文
宏#define命令的另一种用法:
#include "stdio.h"
#define exchange(a,b) { \
int t;\
t=a;\
a=b;\
b=t;\
}
void main(void)
{
int x=10;
int y=20;
printf("x=%d; y=%d\n",x,y);
exchange(x,y);