L
lallous
Hi,
therefore you should not really put hardcoded address values, that's why you
should use the '&' operator.
Regards,
Elias
Yes true. But the address of 'a' can change everytime you modify the programint a = 47;
int* ipa = &a;
Then ipa contains the address of a. Correct.
But I think, if &a=0x065FE00, then the second sentence is:
int* ipa = 0x065FE00;
so *ipa should contains the address of a?
therefore you should not really put hardcoded address values, that's why you
should use the '&' operator.
Nothing's wrong.What's wrong? I feel puzzled.
Regards,
Elias