缘梦星雨 发表于 2012-3-21 01:46:05

函数指针--视频指针47


/*同样是,函数指针的代码,为什么在我这里就无法编译 ,求解**/
#include <stdio.h>

void main()
{

   int max(int x,int y);
   int (*p)();
   int a , b , c ;
   p=max;   //----------不能识别max,,纠结。。跟老师视频中的一样呀,为什么呢??
   scanf("%d%d",a,b);
   c=(*p)(a,b);
   printf("max=%d",c);
   
}
int max(int x,int y)
{
   returnx>y? x:y;
}

风扫地 发表于 2012-3-21 01:46:06

#include <stdio.h>
int max(int x,int y);
void main()
{
   int a , b , c ;
   int (*p)(int ,int);
   p=max;   
   scanf("%d%d",&a,&b);
   c=(*p)(a,b);
   printf("max=%d",c);
   
}
int max(int x,int y)
{
   returnx>y? x:y;
}


改成这样了。。。
有两个问题。。。scanf里面的a,b要取地址。。
函数声明最好是放在外面。

wAterLoo 发表于 2012-3-21 02:23:18

#include <stdio.h>

void main()
{

   int max(int x,int y);
   int (*p)(int x, int y);
   int a , b , c ;
   p=max;   //----------不能识别max,,纠结。。跟老师视频中的一样呀,为什么呢??
   scanf("%d %d",&a,&b);
   c=(*p)(a,b);
   printf("max=%d",c);
   
}
int max(int x,int y)
{
   returnx>y? x:y;
}

用这个试试

缘梦星雨 发表于 2012-3-21 09:53:30

wAterLoo 发表于 2012-3-21 02:23 static/image/common/back.gif
#include

void main()


还是不行哦

wAterLoo 发表于 2012-3-21 14:19:10

缘梦星雨 发表于 2012-3-21 09:53 static/image/common/back.gif
还是不行哦

你是把我的代码复制进去后执行的还是,改了你的代码?

缘梦星雨 发表于 2012-3-21 18:07:18

wAterLoo 发表于 2012-3-21 14:19 static/image/common/back.gif
你是把我的代码复制进去后执行的还是,改了你的代码?

复制,,不行的,

wAterLoo 发表于 2012-3-21 18:21:07

缘梦星雨 发表于 2012-3-21 18:07 static/image/common/back.gif
复制,,不行的,

你在菜单栏目点击
组建/清理
估计是你项目没清理干净

2002wmj 发表于 2014-9-9 22:36:19

很有用,谢谢分享!
页: [1]
查看完整版本: 函数指针--视频指针47