I'm trying to understand Singly Linked List by reading some codes and making sense out of it. This code, found on this site http://www.sanfoundry.com/cpp-program-implement-single-linked-list/, has
struct node
{
int info;
struct node *next;
} *start;
I understand what int info and struct node *next does, but what does the extra *start mean after closing the brackets?
Thanks!