vote up 0 vote down star
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

flag

40% accept rate
This appears homeworky. Is it? Have you tried stepping through the code, and thinking about bit representation in char's versus int's? – ctd Nov 5 at 1:21

5 Answers

vote up 1 vote down

The address of x initially contains these values:

Byte   1st 2nd 3rd 4th
Value  255 255 255 255

First iteration:
*p = -1; -> Address of x 255 255 255 255
p = p + 1; -> points p to 2nd byte

Second iteration:
*p = -1; -> Address of x 255 255 255 255
p = p + 1; -> points p to 3rd byte

Third iteration:
*p = -1; -> Address of x 255 255 255 255
p = p + 1; -> points p to 4th byte

4th iteration:
*p = -1; -> Address of x 255 255 255 255
p = p + 1; -> points p to 5th byte(outside of x's address)

From 5th and so forth the value of x will still be -1. I think your program stopped at forth iteration because on the 5th iteration pointer p is already out of bounds. Also, compiler should have given you a warning at compile time because you did not typecast the address of x when assigning it to p. It should have been:
char* p = (char*) &x;

link|flag
vote up 2 vote down

You are using a char size pointer to write into an int size memory space. The only reason it ever gets set to -1 is because of luck. -1 happens to be 0xff for a char and 0xffffffff for a int so after writing four 0xff you get one int sized -1.

link|flag
vote up 1 vote down

x is an int but you declare p as a char *. On most modern architectures, an int will be exactly the length of 4 char's...

link|flag
vote up 6 vote down

Replace char *p with int *p. Your assignment *p = -1 only writes 1 byte, and an int is 4 bytes.

Your compiler should have generated a warning, as your assignment char *p = &x; is not type safe.

link|flag
1  
That's probably why he has the (char*) cast in there, to silence the warning. C always lets you shoot your feet off. – Zan Lynx Nov 5 at 1:18
Yeah, that cast appeared after I wrote my answer :) – Keith Randall Nov 5 at 1:26
vote up 1 vote down

Because (on your machine) an int is four bytes, but a char is 1.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.