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

python - mat is not a numerical tuple : openCV error -

c# - MSAA finds controls UI Automation doesn't -

wordpress - .htaccess: RewriteRule: bad flag delimiters -