What happens when I declare say multiple variables on a single line? e.g.
int x, y, z;
All are ints. The question is what are y and z in th
Only x is an int pointer. Y and Z will be just int. If you want three pointers:
int * x, * y, * z;