函数指针

惊恐1.写出函数指针,函数返回指针,const指针,指向const的指针,指向const的const指针。

void (*f)()

void * f()

int * const

const int *

const int * const 

惊恐以下的数据声明都代表什么?


原文地址:https://www.cnblogs.com/lxjshuju/p/7338634.html