[Solved] Whats the difference between int * p and int p*? [closed]


Is it valid statement int P* ?

No, it won’t compile.

What’s the difference between int * p and int p* ?

int * p;

Here p is integer pointer .

And int p* is an invalid syntax.

0

solved Whats the difference between int * p and int p*? [closed]