Hi
Could anybody fill the table for me.
thanks
Declarations and initializations
int i=3,j=5,*p=&i,*q=&j,*r;
double x;
value Equivalent expression value
p==&i;
**&p
r=&x
7**p/*q+7
3**q-*p
What excutly means:
**&p
and
*&p
Ihave seen them somewhere, but I don't know what it means
thanks