For :
int *a;
a is an address where an integer can be stored.
&a is an address where a is stored.
Then, where is &a stored?
And, where is &(&a) stored?
And, where is &(&(&a)) stored?
Where does this storing of addresses stop?
|
|
If you don't explicitly write For example:
|
|||||||||
|
|
|
|||||||||||||||||||
|
|
It is correct that At a stretch, you might be able to store something that looks like the integer 0:
But this is just a shorthand syntax for "the NULL pointer", i.e. a pointer value guaranteed to not be the address of any actual object. |
|||
|
|
&a is the address of a. It is a value, result of operator & applied to a, and is not "stored", and has no address, so &(&a) is invalid. It's like 2+3. |
|||
|
|
|
If this declaration is in a function, that variable is automatic and stored on the If the declaration is global, then 'a' is simply mapped in executable's Any more & signs appended can 'create storage', because of the temporary variables you're using to hold'em ;) :
The last line complains about the fact that |
||||
|
|
|
You can keep going forever:
You wouldn't put it on a single line without assigning it to anything - in that case it would be invalid. |
|||
|
|
At the crux of your problem seems to be a lack of understanding of the physical nature of memory and pointers. Not how the code works. As Im sure you know, physical memory is comprised of a large group of adjacent cells. The addresses of these cells are fixed and hard-coded by the computer itself, not by software apps or the programming language that you use. When you refer to &a, you are referring to the physical block of memory that is currently holding your value you've stored within the computers ram. "a" is simply a name that you've given the computer so that it knows exactly what block of memory to find the value that you've stored. I think that pretty much covers memory address. I hope that this didnt get confusing, I tried not to get all techno-babble on you here. If youre still confused. Post again, Ill explain with code next time. -UBcse |
|||
|
|
|
In C, a variable |
|||
|
|
|
a is a variable of type "address of int"; &a is the address of variable a; &(&a) would be the address of the address of variable a, which makes no sense |
|||
|
|
|
Not quite. Very Important: until and unless an address of something is assigned to |
|||
|
|
|
You can have a pointer to a pointer. Ex:
A pointer does take up memory. It's just a small container that holds the address of something. It just can't take up "no space" because everything in the computer is represented somehow by numbers. It's just that as far as C/C++ is concenred, int *a is simply a pointer to an object and takes up no space. That is to keep you from having to manage any sort of memory... it keeps the machine seperated from the code. |
|||
|
|
int *a; is a pointer to an int called 'a'. &a; is the derefrence of int *a. it's pointing to itself. this is what you would use to point to the variable that you wanted to pass around from function to function. derefrence is just a fancy word for "getting the address back" &(&(&a)) is not a valid expression as previously stated. you may make a pointer to a pointer to a pointer. That may be what your thinking of. In such a case you would derefrence the last pointer in question and the computer should understand what you're talking about. To answer the "where is 'a' stored" question; on the stack. please, if i'm incorrect on anything, let me know. |
|||
|
|
|
&a is a number which is an rvalue: you can store it somewhere if you want to in a variable you will have declared or allocated, of type int*. To wit:
&(&a) is not legal syntax. If you want a pointer to a pointer to an int:
You have to build up the levels of indirection. With the above you can then do this if you want:
Producing output of:
|
||||
|
|
This line simply declares a pointer to an integer. That pointer has a memory location, which you can get the address of using &a. & is an operator that returns the address of whatever it is run on. But if you do not assign this value anywhere, there is no further &-ing possible. As to your question as to where &a is stored, most likely in a register. If you do not use the value, it will be immediately discarded. (And registers do not have memory addresses, which is why you cannot do &(&a)) |
|||
|
|