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

传值方式调用函数--请输出结果

时间:2017-12-11 11:28:43      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:ret   post   定义   color   wap   include   print   交换   --   

#include <stdio.h>

  void swap(int x,int y);

int main ()
{
   /* 局部变量定义 */
   int a = 100;
   int b = 200;

   printf("交换前,a 的值: %dn", a );
   printf("交换前,b 的值: %dn", b );

   /* 调用函数来交换值 */
   swap(a, b);

   printf("交换后,a 的值: %dn", a );
   printf("交换后,b 的值: %dn", b );

   return 0;
}

/* 函数定义 */
void swap(int x, int y)
{
   int temp;

   temp = x; /* 保存 x 的值 */
   x = y;    /* 把 y 赋值给 x */
   y = temp; /* 把 temp 赋值给 y */

   return;
}

 

传值方式调用函数--请输出结果

标签:ret   post   定义   color   wap   include   print   交换   --   

原文地址:http://www.cnblogs.com/guojiusong/p/8021498.html

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