pointers - Typdef in C, using * what does this do? -


i've used typedef before, i've never used 1 pointer. effect have on typedef?

code reference:

typedef struct node node,  *pnode, **ppnode; 

instead of using struct node can replace node

instead of using struct node* can replace pnode

instead of using struct node** can replace ppnode

the statement can broken down

typedef struct node node; typedef struct node* pnode;   // pnode pointer node typedef struct node** ppnode; // ppnode pointer pointer node 

Comments

Popular posts from this blog

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Restarting Supervisor and effect on FlaskSocketIO -

c# - Breakout Brick Collision -