What
type name[CONSTANT INT];
char foo[24]; /* Array of chars */ char bar[5], *ptr; /* The [] doesn't carry either! */
extern type name[];
int a[4] = { 3, 2, 1, 0 }; int a[4] = { 3, 2, 1 }; int a[] = { 3, 2, 1, 0 };
int a[4]; a[3] = 10; for (i = 0; i < 4; i++) { a[i] = i; }next slide