C Decl Explain

Explains a few common C declarator shapes: pointers, arrays, and parenthesized declarators.

About this tool

Explains a few common C declarator shapes: pointers, arrays, and parenthesized declarators. Example: int *p[5] is an array of 5 pointers to int; int (*p)[5] is a pointer to an array of 5 int.