1.

How is array of structures declared? Give an example. 

Answer»

The array of structure is a collection of array elements in which each element is a structure in the array.

struct student

{

int regno;

char name[50];

char class[6];

}s[100];



Discussion

No Comment Found

Related InterviewSolutions