Chinaunix首页 | 论坛 | 博客
  • 博客访问: 4466928
  • 博文数量: 1148
  • 博客积分: 25453
  • 博客等级: 上将
  • 技术积分: 11949
  • 用 户 组: 普通用户
  • 注册时间: 2010-05-06 21:14
文章分类

全部博文(1148)

文章存档

2012年(15)

2011年(1078)

2010年(58)

分类: C/C++

2011-05-08 23:35:09


  1. #include <stdio.h>

  2. void makedo(int);   //数值传递

  3. int main(void)
  4. {
  5.     int pooh=2;
  6.     int bah=5;
  7.     printf("in main(),pooh= %d,and &pooh= %p \n",pooh,&pooh);
  8.     printf("in main(),bah = %d,and &bah = %p \n\n",bah, &bah);
  9.                                    //%p 输出 指针值
  10.     makedo(bah);
  11.     return 0;
  12. }

  13. void makedo(int bah)   // bah = bah  ,传递了 main 中 的值,
  14. {
  15.     int pooh=10;
  16.     printf("in makedo(),pooh= %d,and &pooh= %p \n",pooh,&pooh);
  17.     printf("in makedo(),bah = %d,and &bah = %p \n",bah,&bah);
  18. }

  1. ywx@yuweixian:~/yu/c$ ./x
  2. in main(),pooh= 2,and &pooh= 0xbff2e7dc    ### 4 个字节 地址内容
  3. in main(),bah = 5,and &bah = 0xbff2e7d8       dc  d8

  4. in makedo(),pooh= 10,and &pooh= 0xbff2e7ac
  5. in makedo(),bah = 5,and &bah = 0xbff2e7c0


   从上面我们可以知道,四个变量都有不同的地址,

    函数调用 方式,这里使用的是 数值传递,



阅读(560) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~