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

第三套二

时间:2014-08-20 22:45:53      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:io   amp   c   return   print   class   as   include   

#include <stdio.h>

int fun(int *x,int y)
{
  int t ;
  t = *x ; *x = y ;
  return(t) ;
}

main()
{
  int a = 3, b = 8 ;

  printf("%d  %d\n", a, b) ;
  b = fun(&a, b) ;
  printf("%d  %d\n", a, b) ;
}

第三套二,布布扣,bubuko.com

第三套二

标签:io   amp   c   return   print   class   as   include   

原文地址:http://blog.csdn.net/u013116579/article/details/38712617

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