Hi All,


I am having problems reading from a file into an array of structures.
I have defined an array of 100 structures as shown below.

struct address_t

{

char name[name_size];

int comp_one, comp_two, comp_three, comp_four ;

} ;struct address_t address[100];


I can fscanf into one structure no problems but cant work...