621
The type declarations in C, restricted by C’s long history, appears rather complicated in many situations. Let’s give it a thorough analysis today.
Pointers and Arrays
Nested Once
Even the very beginners wouldn’t find the following problems hard:
Are you able to declare an array?
int a[5]; // With 5 elements.
Are you able to declare a pointer?
int *a;
Nested Twice
Are you able to declare a nested pointer?
621