guys what's the meaning of -> in linked list?? explain with example please I've searched online and none of the site tells what's this thing and just go straight to coding
example
start=start->next; // (a)
start->prev = NULL; // (b)
is the meaning of
(a) moving start to next node and then assign the next node to start??
(b) idk what it means ,i need explanation thanks