Saturday, 25 February 2017

GATE EXAM PREPARATION IN "C" - C declarations (GATE CS 2000)

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


define s to be 
(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: (a)

No comments:

Post a Comment