Open In App

C Quiz – 108 | Question 3

Like Article
Like
Save
Share
Report

Anyone of the following can be used to declare a node for a singly linked list and “NODEPTR nodePtr;” can be used to declare pointer to a node using any of the following




/* First declaration */
typedef struct node
{
 int data;
 struct node *nextPtr;
}* NODEPTR;
  
/* Second declaration */
struct node
{
 int data;
 struct node * nextPtr;
};
typedef struct node * NODEPTR;


(A) TRUE
(B) FALSE


Answer: (A)

Explanation: Yes. Both are equivalent. Either of the above declarations can be used for “NODEPTR nodePtr;”. In fact, first one is the compact form of second one.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads