如果我写
int *columns[32];
我是用32个指针定义一个数组吗?
还是指向32个int数组的指针?
我如何区分两者?有差异吗
解决方法
当有疑问 – 请问cdecl
$> cdecl Type `help' or `?' for help cdecl> explain int *columns[32] declare columns as array 32 of pointer to int
编辑响应评论:我在Google Code Search发现cdecl源码,需要GNU readline库.我认为在Mac OS X或Windows上编译它不应该是一个问题.