首页 > 其他 > 详细

第一套三

时间:2014-08-16 22:31:31      阅读:357      评论:0      收藏:0      [点我收藏+]
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
int fun(int *x,int y);
void main()
{
	int a=3,b=8;
	system("CLS");
	printf("%d %d\n",a,b);
	b=fun(&a,b);
	printf("%d %d\n",a,b);
}
int fun(int *x,int y)
{
	int t;
	t=*x;
	*x=y;
	return t;
}

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

第一套三

原文:http://blog.csdn.net/u013116579/article/details/38620657

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!