Use of types/structs
Pair abc, xyz; xyz.ch= ‘q’;abc.a = 5;
Declaration of a struct variable in C actually creates the structure. No separate allocation is needed, as it is in Java (using new …).
struct variables may be local to a function,just like ints, chars, and doubles.