单选题 已定义以下函数:
int fun(int*p)
return*P;)
fun函数返回值是______。

【正确答案】 B
【答案解析】[解析] p中存放的是地址值,但是*p间接引用了p指向的整数值。因此返回一个整数。