Q. The following C declarations define s to be
Code:
struct node
{
int i;
float j;
};
struct node *s[10] ;
β
Correct Answer: (A)
An array, each element of which is a pointer to a structure of type node