☆─────────────────────────────────────☆
lzl (李作乐) 于 (Wed Sep 7 23:28:55 2005) 提到:
1. char *a[10];
2. char *(a[10]);
3. char (*a)[];
I tested it in gcc and the compiler requie the
array size for 1 and 2, but not 3.
Any comments?
☆─────────────────────────────────────☆
lzl (李作乐) 于 (Wed Sep 7 23:29:33 2005) 提到:
aparrently 1 and 2 must be the same