I recently came across the following code on stack overflow (see the whole post here):-
char *c = "200939915";
char *d = c + 1;
It assigns d a value of "00939915", which I find very counter-intuitive.
Can someone explain the mechanism of the process? What is this thing called?
I am a freshman and doing Introductory CS courses, so this would be of great help:)