The number of distinct nodes the following struct declaration can point to is
struct node
{
struct node *left;
struct node *centre;
struct node *right;
};
Answer: A
The number of distinct nodes the following struct declaration can point to is All of the above.