Hello,
I read a bit thinking in C++ and other book and I see that for declare pointer the style more used is int* y; then I read the Ansi C Ritchie's book and I say it use int *y; what the best tyle?
Actually, it seems better the second; for example: "int *y, *z" should be ok but not "int* y, z" (this last it's not the same). I read the '*' is referer to name variabile and not the type.
What do you think?