![]() ![]() ![]() ![]() ![]() ![]() ![]() | Pointers og Arrays - slide 8 : 26 |
Expression | Equivalent Expression | Value |
p == &i | p == (& i) | 1 |
p = i + 7 | p = (i + 7) | illegal |
* * & p | * (* (& p)) | 3 |
r = & x | r = (& x) | illegal |
7 * * p / * q + 7 | ((7 * (* p)) / (* q)) + 7 | 11 |
* (r = & j) *= * p | (* (r = (& j))) *= (* p) | 15 |