insurence exam AIC MT (Generalist & IT) Mock Test Series 2025 Programming and Data Structure Linked List
Which of the following is the correct declaration of linked list?
1
struct node*
{
int data;
node *link;
}
2
struct node
{
int data;
struct node *link;
}
3
struct node
{
int data;
node link;
}
4
struct node*
{
int data;
struct node *link;
}
5
None of Above