1.

Consider the following linked list representation. Which of the following statement is used to create a node ?

A. new_node=(struct node *)malloc((struct node));
B. new_node=(struct *)malloc(sizeof(struct node));
C. new_node=(struct node)malloc(sizeof(struct node));
D. new_node=(struct node *)malloc(sizeof(struct node));
Answer» E.


Discussion

No Comment Found