IAR和Keil中void *指针编译提示错误

2019-07-14 14:52发布



void *p;

int FuncInt(int x,int y)

{

  return 1;

}



int main(void)

{        

   p = FuncInt;

}



上面这段代码在Keil里面没有错误和警告,

在IAR里面会提示错误:Error[Pe513]: a value of type "int (*)(int, int)" cannot be assigned to an entity of type "void *"
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。