adplus-dvertising
frame-decoration

Question

The number of distinct nodes the following struct declaration can point to is
struct node
{
   struct node *left;
   struct node *centre;
   struct node *right;
};

a.

1

b.

2

c.

3

d.

All of the above

Posted under C Programming

Answer: (d).All of the above

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. The number of distinct nodes the following struct declaration can point to is