可以把int *看成一个整体,*号表示指针,因此这是说明fun()函数有2个int *类型的指针形参,并且返回一个int *类型的指针。可以如下调用 fun()函数:int *a, *b, *p;p = fun(a, b);