摘要:
const int *a与int *const a,const int *const a的区别 详解const int *p,int*const p,int const *p 关于const int*, int const*以及int *const的区别 const int*和int const*的 阅读全文
摘要:
指针函数形如: int* f(int a, int b); 函数指针形如: int (*f)(int a, int b); 具体解释:指针函数与函数指针 阅读全文