Cat*_*lus 8

http://cdecl.org/

  1. char (*p)[4]; - 将p声明为指向char数组4的指针.
  2. char *p[4]; - 将p声明为指向char的指针的数组4.

  • 随你怎么便! (2认同)