| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 389 人关注过本帖
标题:void如何带回指针
取消只看楼主 加入收藏
aavs
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-5-1
收藏
 问题点数:0 回复次数:0 
void如何带回指针
请我详细讲解下面的题目,急用!!!!!
第一题
void foo(int[][3]);
main()
{ int a[3][3]={{1,2,3},{4,5,6},{7,8,9}};
foo(a);
printf("%d",a[2][1]);
}
void foo(int b[][3])
{
++b;
b[1][1]=9;
}
the output for this program is:
第二题
void test(int a)
{ a=9;
}
main()
{ int a=0;
test(a);
printf("a=%d\n",a);
}
the output for this program is:
第三题:
int *f(void)
{
int x=10;
return(&x);
}
int *f2(void)
{
int*ptr;
*ptr=10;
return ptr;
}
int*f(void)
{ int*ptr;
ptr=(int*)malloc(sizeof(int));
return ptr;
}
which of the above three functions are likely to cause problem with pointers:
(a)only f3 (B)only f1and f3 (C) only f1and f2(D)f1 f2 f3
搜索更多相关主题的帖子: 指针 void 
2007-05-01 12:27
快速回复:void如何带回指针
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.014900 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved