suppose
First case
int a;
int *p= &a ; it works no error
Second case
long int a;
long int b;
b = & a; it wont work
Most of us say b is a varible not a pointer. But see the below
So the question is if the &a returns the address which is an unsigned integer then why cant we assign it to a normal variable? but why only to pointers ? see below
b = (unsigned int) &a ; it works after typecasting though its not practissable
if the address is integer format then why dont the unsigned or long integers save it . I was thinking, there must be some hidden secret behind it. Could anyone reveal it? What I thought is , pointers must be doing something inside but i wonder what it would be and why a normal variable cant be.
Thanks for all your answers but the actual question what really the &a returns ? integer value or not ? if it is integer number why a variable cannot hold it ? long int a =65535 \valid why not int a= &b if value of address b is 65535
Im not worried to use it as pointer, Please the question is about just saving the value. Not derefercing the address. People saying 32 or 64 bit, Im not worried about that. why it cant save the address if address is a integer number ?
I mean why cant we assign the value, Im not saying to assign the properties of pointers to variable but just assign the value thats it
a=65535
b = a \\ works it assigns b - 65535
&a=65535
b = & a \\ doesnt work, if address is a some integer value,why we cant store it in a variable?
take the 16 bit as example normal pointer (the address ) size is 2 bytes and variable size is 2 bytes why cant we store the adress in other varibale if address is integer value thats my question i find many answers like ++ it increments by 4 to pointer and value 1 to variable ,not worried about that just assigning the value is more important question.
b = & a ; address of a is 4000
++b ; becomes 4001 thats it,thats not a problem
UnrelatedClassAandUnrelatedClassBare just bytes, so why can't you assign one to the other? It's part of the type system. – Seth Carnegie Sep 9 '11 at 13:49