What does this symbol ** mean in the C language -


hi i'm new c language, can explains ** symbol mean.

typedef struct _treenode {         struct _treenode *left, *right;         tchar key[key_size];         lptstr pdata;     } treenode, *lptnode, **lpptnode; 

if x pointer, *x dereferences it. **x same *(*x), **x dereferences pointer pointer. (eg, thing pointed thing x opints to).


Comments

Popular posts from this blog

javascript - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -