C Programming PYQ GATE CS 2000

C Programming PYQ GATE CS 2000

struct node { int i; float j; }; struct node *s[10]; The above C declaration defines An array, each element of which is pointer to a structure of type node A structure of 2 fields, each field being a pointer to an array of 10 elements 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