Which is correct?

Which is correct?
int* px, py, pz
int * px, py, pz
int *px, py, pz

Attached: whut.jpg (641x574, 47K)

[CODE]
int *px;
int py, pz;
[/CODE]
/thread

Yes

>/threading your own post

all of them compile to the exact same code
you must specify a pointer for all variables separately

the third one of course
the first one might make you think all of them will be pointers, while the third one makes it clear its only a property of px
the second one is rarted

Attached: babushcats.jpg (500x548, 57K)

None are because py and pz will be integers instead of pointers to int and you're also missing semicolons

degenerate

int *px;
int *py;
int *pz;

I prefer option three, but I might be a brainlet so what do I know, anyway?