Top

Discussion

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.All of the above
  • B.1
  • C.2
  • D.3

Answer: A

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

No comment is present. Be the first to comment.
Loading…

Post your comment