Home > Back-end >  C language array pointer
C language array pointer

Time:10-28

Why the printf is right when you need to add a *

CodePudding user response:

P is a pointer array
* p + I + I (* p);
* p is the temp (p=& amp; Temp code is visible)
* (* p + I) is equal to * (temp + I) so you can understand!

That means * p is still a pointer, use an array of Pointers
  • Related