C declaration explainer

Explique quelques formes courantes de déclarateurs C : pointeurs, tableaux et déclarateurs entre parenthèses.

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.