标签: c function pointers
在接收端传递指向C中函数的指针时,可以看到两个约定:
void foo(int *pointer)
和
void foo(int* pointer)
它们之间有什么区别?