I have this code:
#include #include struct node { int data; struct node *next; }; void pointerOfPointer(struct node **re
Remember that foo->bar is just syntactic sugar for (*foo).bar. What you're asking for is essentially (**reference).data, which you can rewrite as (*reference)->data if you want.
foo->bar
(*foo).bar
(**reference).data
(*reference)->data