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!