Are
int (*x)[10];
and
int x[10];
equivalent?
According to the \"Clockwise Spiral\" rule, they parse
No. First one declares an array of 10 int pointers and second one declares an array of 10 ints.