The number of distinct nodes the following struct declaration can point to is . . . . . . . .
struct node
{
struct node *left;
struct node *centre;
struct node *right;
};
struct node
{
struct node *left;
struct node *centre;
struct node *right;
};A. 1
B. 2
C. 3
D. All of the mentioned
Answer: Option D
Related Questions on Structure and Union
Which of the following can be a member of a structure?
A. Function
B. Another structure
C. Enumeration
D. All of the above

Join The Discussion