|
|
so now pointV will print the adress of v right? |
and *pointV will print the value of v which is 10. |
if i add 5 to *pointV does it add 5 to v? |
also if i print out &pointV it gives me the same value as if i print pointV(that is the adresss of v). |
does pointV not have an adress? |
ok so i put both of them one under the other and it gave me the exact same value except pointV was 0x22ff28 and &pointV was 0x22ff2c |
this is quite confusing what does the c mean at the end |