#include <stdio.h>
int* fun();
void main()
{
int* p;
*p=fun;
printf("%d",*p);
}
int* fun()
{
static int a;
int* p;
a=100;
return p;
}
1 回答
已采納

望遠(yuǎn)
TA貢獻(xiàn)1017條經(jīng)驗(yàn) 獲得超1032個(gè)贊
p=fun();?//應(yīng)該是這樣函數(shù)調(diào)用,注意返回值類型。
int*?p=&a;?//指針p沒有初始化。
- 1 回答
- 0 關(guān)注
- 1292 瀏覽
添加回答
舉報(bào)
0/150
提交
取消