Examveda

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 mentioned

Answer: Option D


This Question Belongs to C Program >> Structure And Union

Join The Discussion

Related Questions on Structure and Union