Home » C Programming » Structures » Question
  1. The number of distinct nodes the following struct declaration can point to is _____________.
    struct node
    {
    struct node *left;
    struct node *centre;
    struct node *right;
    };
    1. 3
    2. 2
    3. 1
    4. All of above
    5. None of these
Correct Option: D

Option A, B and C is right answer.



Your comments will be displayed only after manual approval.