#include<stdio.h>
void change(int n,int m)
{
//printf("change2 %d,%d\n",n,m);
int a=0;
a=n;
n=m;
m=a;
printf("change2 %d,%d\n",n,m);
}
void f(int *p,int *p1)
{
int c;
c=*p1;
*p1=*p;
*p=c;
}
int f1( int a,int b)
{
if(a>b)
return a;
//else
return b;
}
int main()
{int a, b,c;
int *p,*p1;
a=20;
b=15;
p=&a;
p1=&b;
*p1=100;
*p=50;
printf("%d,%d\n",a,b);
printf("%d,%d\n",*p,*p1);
printf("%d,%d\n",p,p1);
c=*p1;
*p1=*p;
*p=c;
printf("%d,%d\n",a,b);
printf("%d,%d\n",*p,*p1);
c=a;
a=b;
b=c;
printf("%d,%d\n",a,b);
printf("%d,%d\n",*p,*p1);
change(a,b);
printf("%d,%d\n",a,b);
/f(p,p1);
printf("%d,%d\n",a,b);
printf("%d,%d\n",*p,*p1);
/c=f1(a,b);
/printf("%d\n",c);
}
![在这里插入图片描述](https://img-blog.csdn.net/20181021190014783?watermark/2/text/aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L25paGFvdGFpbWFu/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70)
第一:else写错了
第二:调用函数的格式不会
第三:指针传递参数是应该传地址
第四:有返回的的函数应该用变量装这个值
第五:还要输出这个返回结果。
总结:巩固了函数的调用,指针的传递。
指针传递与函数调用
最新推荐文章于 2023-07-08 15:16:57 发布