函数指针

来源:互联网 发布:淘宝会员名跟昵称区别 编辑:程序博客网 时间:2024/05/02 00:36

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

void (*f)()

void * f()

int * const

const int *

const int * const 

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


0 0