int main(void) {
int x = 0;
char* p = (char*) &x;
int k = 0;
while (x != -1) {
*p = -1;
p = p + 1;
k = k + 1;
}
printf("%d", k);
}
We have already set p to the address of x with char* p = &x; logically, *p=-1 should have replaced the value of x on the first iteration (k=1). In reality (or when I ran the code in VS), it took 4 iterations to complete the value assignment. Why? and since *p = -1 is executed in every iteration, where did the other three -1s go? Thanks
