vote up 25 vote down star
13

I was shown this recently, and thought this was a really cool piece of code. Assume 32-bit architecture.

#include <stdio.h>

int main(void) {
    int x[4];
    printf("%p\n", (void*) (x));
    printf("%p\n", (void*) (x + 1));
    printf("%p\n", (void*) (&x));
    printf("%p\n", (void*) (&x + 1));
}

Without compiling the program, what does it output, and why? If you think that a certain output will be arbitrary, say so, invent a value, and then pretend that was the value that was output.

Edit: So the question has been answered, fastest gun goes to wnoise! However, I encourage people who are just reading this challenge to attempt it yourself, before you check out the answers.

Edit 2: Converted the pointers to void*, as per Chris Young. I believe most compilers treat the two the same way, but let's be correct.

flag

76% accept rate
This question should be "so you think you know arrays"! It all hinges on the type that &x returns for an array. – MattSmith Oct 24 '08 at 2:42
umm...which would be a pointer...ergo.... – Will Hartung Oct 24 '08 at 3:07
Unless you intend to illustrate a program with undefined behavior, you should cast all of them to void *, as per my answer. – Chris Young Oct 24 '08 at 3:15

10 Answers

vote up 14 vote down check

The output is undefined behavior because %p requires that the pointer be cast to void * since other pointer types might not have the same size and representation as void *. Assuming that part of the program is corrected, the output would be implementation defined. The output would be an implementation defined representation of the following values, assuming n = the pointer value of the address of the first element of the array:

n
n + sizeof(int)
n 
n + 4 * sizeof(int)

The reason for the first 3 lines should be obvious. The reason for the last line is because &x is of type int(*)[4] and not int *.

link|flag
I noticed the %p and said to myself, "Gee, I don't remember using that one in, oh... -damn- too many years to remember!" – Richard T Oct 24 '08 at 3:22
it's not much use except for a poor man's debugging. One other rather esoteric use is to printf %p out pointer values to a file then scanf them back with %p. The standard guarantees the resulting pointer be equal to the one written out if it's the same program. – Chris Young Oct 24 '08 at 3:26
vote up 0 vote down
0x12345678 # Arbitrary
0x1234567C
0x0000032A # Arbitrary
0x0000032E

Assuming 32 bit integers and pointers. Watch me be incredibly wrong!

EDIT: (Spoilers)

Okay, so this is the result:

0x0022FF60
0x0022FF64
0x0022FF60
0x0022FF70

I was right with the first one, but the second one is a pointer to four integers, so incrementing it increments the pointer by four times the value, in this case, 16 bytes, right?

link|flag
You are wrong! You are now allowed to run the program and see what happens (you still have to explain it.) – Ambush Commander Oct 24 '08 at 2:36
Well, not have to; just should. :-) – Ambush Commander Oct 24 '08 at 2:36
Sounds right to me: &x is a pointer to int[4], not int. So adding 1 adds the size of int[4], which is 16 bytes. – Charlie Oct 24 '08 at 2:59
vote up 12 vote down
0x12345678
0x1234567C
0x12345678
0x12345688
link|flag
Pointer to int vs pointer to array of 4 integers. – wnoise Oct 24 '08 at 2:41
Excellent question, excellent answer. So cool, I still don't get it, so now I'm going back to my cave and think about it for a bit. +1 insightful to wnoise :) – Tom Oct 24 '08 at 7:22
vote up 0 vote down

Isn't the answer dependent on the direction of stack growth, this hasn't been specified?

link|flag
No, because increasing array indexes refer to increasing addresses, no matter which way the stack grows. – Greg Hewgill Oct 24 '08 at 2:59
No - as Greg said... – Jonathan Leffler Oct 24 '08 at 3:03
vote up 0 vote down

Assume that sp is 0x000010000

sizeof(int) is 4

sizeof(int *) is 8

Output will be:

0x000010000
0x000010004
0x000010000
0x000010008

& operator applied to an array does nothing, it's a no-op, since the array is already a pointer.

link|flag
An array is not a pointer. However, when you reference the array as shown, it becomes a pointer. – Jonathan Leffler Oct 24 '08 at 2:58
Also, as the other answers show, the fourth value is 16 bytes 0x10 more than the first. – Jonathan Leffler Oct 24 '08 at 2:59
Yeah, I saw in the answer above that the &foo + 1 == &foo + sizeof(foo) -- which in the case of an array is the amount of space allocated to the array. And, yeah, your first statement is correct too: an array's not a pointer but in many cases it's treated as one. – Moishe Oct 24 '08 at 3:05
vote up 0 vote down

Is the last one supposed to be address of array + 1 byte?

  • 0x12345678
  • 0x1234567C
  • 0x12345678
  • 0x12345679

UPDATE

Based on Bernard's advice, it would then be address + extra 4 bytes address

  • 0x12345678
  • 0x1234567C
  • 0x12345678
  • 0x1234567C

Which is supposed to be wrong answer. I guess not touching C for nearly 15 yrs has its disadvantages :-p

UPDATE2

End lesson is address + extra 16 bytes (according to size of array 4 ints)

  • 0x12345678
  • 0x1234567C
  • 0x12345678
  • 0x12345688
link|flag
Pointer arithmetic doesn't work like straight arithmetic. Any addition is converted into the pointer size first. – Bernard Oct 24 '08 at 2:46
Pointer size, so that would be 32bit address = 4 bytes. – icelava Oct 24 '08 at 2:55
No; &x is a pointer to an array of 4 ints, so &x + 1 is 16 bytes later. – Jonathan Leffler Oct 24 '08 at 3:00
I did consider that, but was not able to verify whether the compiler would indeed take into consideration the array size or not. Is there some documentationo that explains this? – icelava Oct 24 '08 at 3:06
"Any addition is converted into the pointer size first" -- I know you meant "size of the pointed-to object" but some of the other posters here don't know you meant that. "Is there some documentationo" -- C language definition 38 years ago, maybe some textbooks since then too. – Windows programmer Oct 24 '08 at 3:10
show 3 more comments
vote up 1 vote down

wow... it's been a loooong time since the good ol days ...

but... still.

x and &x are basically the same thing here are they not, arrays in C are just syntactic sugar over pointer arithmetic, so my guess would be that basically twice the same pair of lines to be the output of the program above... unless the adress of an adress yields yet another address...

ho... the pain.. my brain hurts... need more beer


weeeel will you look at that, they are both addresses but the pointer arithmetic will be affected differently by the & operator... typing the pointer differently

x being the address of the first element (typed int)
&x being the address of the array of int (typed int[4])

nice, thanks

link|flag
Yeah, if I saw that second piece of work in real code, I would be quite confused. But it does work differently, at least on this machine, so I suppose I should do a little boning up on the stuff. – Bernard Oct 24 '08 at 2:52
&x is a pointer to an array of ints. x is a pointer to the first element in the array. – Brian R. Bondy Oct 24 '08 at 3:02
I wonder who upvoted this answer. – Windows programmer Oct 24 '08 at 3:05
somebody who already had more beer ;-D – icelava Oct 24 '08 at 3:08
darn you people are fast... yes Brian, I was editing while you answered ;-). – Newtopian Oct 24 '08 at 3:10
vote up 12 vote down

Alright! We've got some good answers, and some essentially correct explanations. But let's elaborate a little on what's going on:

int main(void) {
    int x[4];
    printf("%p\n", x);      // 0x100
    printf("%p\n", x + 1);  // 0x104
    printf("%p\n", &x);     // 0x100
    printf("%p\n", &x + 1); // 0x110
}

First line:

    printf("%p\n", x);      // 0x100

Basic retrieval of address of pointer. This is the only arbitrary value of the four.

    printf("%p\n", x + 1);  // 0x104

Basic pointer arithmetic. Recall that the size of int on a 32-bit system is 4 bytes, so address increases by four. This is now subscript 1 of the integer array.

    printf("%p\n", &x);     // 0x100

If you were taught that arrays are equivalent to pointers, this will confuse you: the common response is that this is an another arbitrary value, i.e. the pointer to the pointer, residing somewhere on the stack. If you try code that tries to do that, however, your compiler will complain (GCC says "error: label `x' used but not defined").

The correct response is that x was the address to the first integer of the array; &x is now an address to the actual array, which just happens to be the same as the address to the first integer of the array.

If x had been defined as x*, and we malloc'ed the appropriate amount of memory, the behavior would be different. And when passing pointers through functions, the distinction usually disappears. But a pointer to the array is not the same as a pointer to the first element of the array!

    printf("%p\n", &x + 1); // 0x110

If you answered 3 wrong, you would definitely get 4 wrong, because extending that line of thought, we're now talking about a pointer to a pointer, and then the appropriate pointer arithmetic would be 4 bytes worth.

If you realized that 3 was now a pointer to an array, you would also realize that doing pointer arithmetic would be with regards to the size of the array, not the pointer.

Thanks everyone who participated!

link|flag
Wow, very interesting. I've been using pointers for years and never knew the difference between a pointer to an array and a pointer to the first element of the array. Thanks for posting this question (and answer)! You learn something new everyday. :) – Bob Somers Oct 24 '08 at 3:50
Question about #4, assuming an int is 32 bits (4 bytes), why is the address 10 more and not 16? Oooooohhh, writing it out made me realize I'd forgotten it was Hex... ha! – swilliams Oct 24 '08 at 20:49
Upvoting you if only for using readable addresses. I wonder why everyone went for 0x12345678 as opposed to, say, 0. Or 5. (OK, they're unlikely, but still?) – aib Oct 28 '08 at 1:48
vote up 0 vote down

Like said Bernard the first time:

0x12345678 # Arbitrary

0x1234567C

0x0000032A # Arbitrary

0x0000032E

&x's type is int**, which size is 4 in 32bit... so &x + 1 = 0x0000032E

link|flag
Look more carefully at the other answers, and try compiling/running the program yourself. – Ambush Commander Oct 26 '08 at 0:25
vote up 1 vote down

Technically, there are two "correct" answers because even on a 32-bit architecture, int is allowed to be 16-bit.

link|flag

Your Answer

Get an OpenID
or

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