C multiple single line declarations

Viewed 21441

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 the following statement?

int* x, y, z;

Are they all int pointers?

4 Answers
Related