#include "stdio.h" main() { int *p; int (*q); }
以上主函数中两句话有什么区别?
**********************************
在上面的代码中问题不够明显,所以我现在再添加一段代码
#include "stdio.h" main() { int *p[4]; int (*q)[4]; }
这两句有什么区别,这两种指针变量该如何使用?
努力提升
相关分类