πŸ“Š C Programming
Q. The following C declarations define s to be
Code:
struct node
{
   int i;
   float j;
};
struct node *s[10] ;
  • (A) An array, each element of which is a pointer to a structure of type node
  • (B) A structure of 2 fields, each field being a pointer to an array of 10 elements
  • (C) A structure of 3 fields: an integer, a float, and an array of 10 elements
  • (D) An array, each element of which is a structure of type node.
πŸ’¬ Discuss
βœ… Correct Answer: (A) An array, each element of which is a pointer to a structure of type node

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
127
Total Visits
πŸ“½οΈ
3 y ago
Published
πŸŽ–οΈ
Ram Sharma
Publisher
πŸ“ˆ
88%
Success Rate