Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
struct node { int i; float j; }; struct node *s[10];
struct node
{
int i;
float j;
};
struct node *s[10];
The above C declaration define 's' to be
A structure of 3 fields: an integer, a float, and an array of 10 elements
An array, each element of which is a structure of type node.
An array, each element of which is a pointer to a structure of type node
A structure of 2 fields, each field being a pointer to an array of 10 elements
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!