struct node  
{
int data;
struct node *next;
}
node ptr;

Which one of the following is the correct option to create a new node?

Posted on by