Assume this:
int a = 5;
int *p = &a;
int c = *p;
int d = p[0];
So is *p
equivalent to p[0]
in the world of the pointers and arrays?
Assume this:
int a = 5;
int *p = &a;
int c = *p;
int d = p[0];
So is *p
equivalent to p[0]
in the world of the pointers and arrays?