Basic Rules
Learn more about the type system used in C. Discover a simple process for understanding complex declarations.
We'll cover the following...
Introduction
We’ve already seen our fair share of declarations involving pointers, such as pointers to variables, pointers to arrays, and pointers to functions. Examples of such declarations are as follows:
int* ptr; //ptr is a pointer ...