+3 votes
in Class 12 by kratos

How is array of structures declared? Give an example.

1 Answer

+5 votes
by kratos
 
Best 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];

}*[100];

...