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

【正确答案】 B
【答案解析】[解析] 由函数int fun(int *p){return*p;}的定义可知,返回值为整型指针变量p所指向的数据。