鱼C论坛

 找回密码
 立即注册
查看: 2310|回复: 3

一个有关函数指针的问题,急求大神指教

[复制链接]
发表于 2014-8-4 09:23:29 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<stdio.h>

void main()
{
        void swam(int*ptr1,int*ptr2);
       
        int a,b;
        printf("Please input two numbers!\n");
        scanf("%d %d",&a,&b);
        swam(&a,&b);
        printf("a=%d,b=%d\n",a,b);
}
void swam(int*ptr1,int*ptr2)
{
        int *ptr;
        *ptr=*ptr1;
        *ptr1=*ptr2;
        *ptr2=*ptr;
        printf("*ptr1=%d,*ptr2=%d\n",*ptr1,*ptr2);
}编译无错误,为什么运行时会出问题??????
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2014-8-4 09:50:55 | 显示全部楼层
我明白了,是应为指针没有初始化。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-8-4 10:57:33 | 显示全部楼层
#include<stdio.h>

void main()
{
        void swam(int*ptr1,int*ptr2);
        
        int a,b;
        printf("Please input two numbers!\n");
        scanf("%d %d",&a,&b);
        swam(&a,&b);
        printf("a=%d,b=%d\n",a,b);
}
void swam(int*ptr1,int*ptr2)
{
        int k;
        k=*ptr1;
        *ptr1=*ptr2;
        *ptr2=k;
        printf("*ptr1=%d,*ptr2=%d\n",*ptr1,*ptr2);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-8-4 22:30:46 | 显示全部楼层
void main()
{
        void swam(int*ptr1,int*ptr2);
        
        int a,b;
        printf("Please input two numbers!\n");
        scanf("%d %d",&a,&b);
        swam(&a,&b);
        printf("a=%d,b=%d\n",a,b);
}
void swam(int*ptr1,int*ptr2)
{
        int k,*ptr;
       ptr=&k;
        *ptr=*ptr1;
        *ptr1=*ptr2;
        *ptr2=k;
        printf("*ptr1=%d,*ptr2=%d\n",*ptr1,*ptr2);
}
利用指针这样也可以。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 19:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表