1.写出函数指针,函数返回指针,const指针,指向const的指针,指向const的const指针。
void (*f)()
void * f()
int * const
const int *
const int * const
以下的数据声明都代表什么?