码迷,mamicode.com
首页 > 其他好文 > 详细

使用函数实现两个数的交换。

时间:2015-10-18 10:08:13      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:使用函数实现两个数的交换。

#include <stdio.h>
void swap(int *a,int *b)
{
	int tmp;
	tmp=*a;
	*a=*b;
	*b=tmp;
}
int main()
{
	int a=20;
	int b=10;
	swap(&a,&b);
	printf("a=%d b=%d",a,b);
	return 0;	
}


使用函数实现两个数的交换。

标签:使用函数实现两个数的交换。

原文地址:http://10740329.blog.51cto.com/10730329/1703934

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!