概述
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define N 3
#define exchange(a, b) {int tmp = a; a = b; b = tmp;}
void func(int a, int b)
{
exchange(a, b);
}
void main()
{
int a = 10, b = 5;
exchange(a, b);
printf("a=%d, b=%dn", a, b);
a = 10, b = 5;
func(a, b);
printf("a=%d, b=%dn", a, b);
return 0;
}
/*
a=5, b=10
a=10, b=5
Process returned 10 (0xA) execution time : 0.088 s
Press any key to continue.
*/
最后
以上就是健壮战斗机为你收集整理的【C 语言练习】使用宏定义形式完成两个数字交换的全部内容,希望文章能够帮你解决【C 语言练习】使用宏定义形式完成两个数字交换所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复