码迷,mamicode.com
首页 > 编程语言 > 详细

【c语言】利用指针进行两个数的交换。

时间:2014-12-21 23:23:28      阅读:361      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
void swap(int *a,int *b){
    int temp;
    temp=*a;
    *a=*b;
    *b=temp;
}
void main(){
    int a,b,*m,*n;
    a=4;
    b=5;
    m=&a;
    n=&b;
    printf("a=%d,b=%d\n",a,b);
    swap(m,n);
    printf("a=%d,b=%d\n",a,b);

}

备注:就是在swap里面temp这个额外空间不能写成指针变量。。必须写成整形变量。

 

【c语言】利用指针进行两个数的交换。

标签:

原文地址:http://www.cnblogs.com/zhizhuniuniu/p/4177184.html

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