选择题   已定义以下函数:
    int fun(int  *p)
    {  return *p;  }
    fun函数返回值是______。
 
【正确答案】 A
【答案解析】返回值为指针变量指向的数据,该数据已被定义为整型。因此A选项正确。