What is the difference between *x=i and x=&i?
Code:
int i=2;
int *x;
*x=i; //what is the difference between this...
x=&i; //...and this??
//Also, what happens when I do these? Not really important but curious.
x=i;
*x=*i;
|
|
This assigns the value of
This assigns the address of Note that in your example Here is a better illustration:
|
|||||||||||||
|
and
|
|||
|
|
|
|
|||
|
|
|
|
|||
|
|
|
|
|||
|
|
|
Well, when you say
You're saying: make the variable x points to the value i. When you say
You're saying make the address x points to the address of i. And I guess you should be able to figure the other ones out by yourself! |
|||
|
|
|
When you do When you do |
|||
|
|
|
Some of these calls would require a cast to be syntactically correct. |
||||
|
|