Name: Anonymous 2010-07-20 8:47
int b=1 ;int* wat;wat=&b;//wat->b
int wat2;//Its a variable.
wat2=(int)&wat;//now its not
printf("%d",*wat);
int wat2;//Its a variable.
wat2=(int)&wat;//now its not
printf("%d",*wat);
[code]
[code]
wat2 contains the address of wat, which contains the address of b, if that was your question. Now please leave.