char* p = "hello world";
programmers usually assigns the address of an variable to a pointer. But in the above case, where is the pointer pointing to?
and what in the world is
int x =42;
int* p= &x;
int ** r = &p;
|
|
|||||||||||||
|
|
|
It's pointing to an area in the program's read-only memory (usually in the program's machine code itself) containing the ASCII sequence
Which creates an array of 12
Which creates an array of 12 As for your (totally unrelated) second question:
Is simpler than it looks, though it's also bad.
Then the pointer
Now |
||||||||
|
|
|
An illustration might be helpful. Given the following declarations:
assume the following memory map (addresses and layout are completely arbitrary and aren't meant to represent any real-world architecture):
0x00 0x01 0x02 0x03
0x00008000: 'h' 'e' 'l' 'l'
0x00008004: 'o' ' ' 'w' 'o'
0x00008008: 'r' 'l' 'd' 0x00
...
s: 0x01000000: 0x00 0x00 0x80 0x00
x: 0x01000004: 0x00 0x00 0x00 0x2D
p: 0x01000008: 0x01 0x00 0x00 0x04
r: 0x0100000C: 0x01 0x00 0x00 0x08
q: 0x01000010: 'h' 'e' 'l' 'l'
0x01000014: 'o' ' ' 'w' 'o'
0x01000018: 'r' 'l' 'd' 0x00
The string literal "hello world" is a 12-element array of The line
defines The line
defines The line
defines The line
defines Note that pointer types are distinct and not always compatible. Even though And finally, as an added bonus, we have the line
which defines |
||
|
|
|
|
p is a memory address stored with
so r is a reference to that address...kinda messed |
||
|
|
|
|
The asterisk sign used when declaring a pointer only means that it is a pointer (it is part of its type compound specifier), and should not be confused with the dereference operator, also an asterisk. If you want to access the value it returns, you must precede it with a double asterisk. |
||
|
|
|
|
p points to the first character of a NUL-terminated string. r points to a pointer ... that is to say that it points to a location which holds pointer, to an integer. |
||
|
|
|
|
The string constant "hello world" must reside somewhere in the application and will be loaded into memory at runtime. Typically this is in the data section of the executable. The pointer p points to this address in memory. The second example simply takes the address of p. Given that p is on the stack it will be an address into the current stack. |
||
|
|