c++
p
is pointing to specific place
int * p
When I try p=p[1]
it says can't convert int to int (using devcpp).
While p=&p[1]
works fine
Why do I need to do the second method?
p[1]
is an address. So the first method should work?
Can you explain me about this error?