struct node
{
int info;
struct node *next;
} *start;
How can start act as a pointer to a node without explicitly initializing any node in the following structure declaration?
I don’t understand how start can be used as a pointer to a node when there is no explicit initialization of a node. Can you explain this concept in detail?
Can someone explains me this way of writing code where *start is writtern after }.