int 2a x vs int 2ax in c

Solutions on MaxInterview for int 2a x vs int 2ax in c by the best coders in the world

showing results for - "int 2a x vs int 2ax in c"
Georgette
01 Jul 2018
1They are the same to the compiler therefore, *x IS PREFERED! Why:
2int* x, y, z;
3A programmer understands that x, y and z are All pointers... That's a LYE!
4Only x is a pointer.
5--------------------------
6int *x, y, z;
7We can clearly understand that X IS THE ONLY POINTER.