指针: 返回值为指针的函数, 类型名 * 函数名(参数表) 表示函数的返回值是指向int型数据的指针.
int *func (int x,int y) 函数名前的*只表示范围值为指针数据. *func 两侧没有括号。