• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests

C | Structure & Union | Question 10

C
struct node 
{ 
   int i; 
   float j; 
}; 
struct node *s[10];

The above C declaration define \'s\' to be (GATE CS 2000)

(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.

Answer

Please comment below if you find anything wrong in the above post
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!

Last Updated :
Share your thoughts in the comments