hey guys,I understand what a pointer to pointer is a pointer to a pointer is a pointer that stores another pointer which in turn stores a variable but what has me confused lets take the example below
current is a pointer which points to a pointer head which points to a node;
now how come I don't declare current as **current and when I do I get an error but when I declare current as a single pointer it works *current any ideas?