Double Indirection Review
Consider:int a;int * pa;int **ppa;
what type is &a ?
int * pa
What type is &pa ?
Int **ppa
After pa = &a, Are these statements correct: *ppa = pa;*ppa = &a;ppa = &&a;
Previous slide
Next slide
Back to first slide
View graphic version