C: 使用函数实现交换两个变量的值

题目:

使用函数实现交换两个变量的值

分析:

1.C语言中函数形参与实参之间值得传递是单向得,即永远是实参给形参传递值

2.主函数调用my_swap函数,将实参i,j的值传给形参x,y; 

代码展示:

#include 

void my_swap(int x, int y)
{
	int temp;
	temp = x;
	x = y;
	y = temp;
}

int main()
{
	int i, j;
	printf("please enter two numbers:\n");
	scanf("%d%d", &i, &j);
	my_swap(i, j);
	printf("the result is:%d	%d\n", i, j);
}

结果显示:

 

C: 使用函数实现交换两个变量的值_第1张图片

你可能感兴趣的:(c语言,算法,c++)