Charred_Phoenix
08-01-2003, 05:54 AM
If I have this:
struct homework {
char subject[20];
char task[1000];
char due[8];
}
and want 15 sets of this, how can I do the working equivalent of struct homework[15]?
struct homework {
char subject[20];
char task[1000];
char due[8];
}
and want 15 sets of this, how can I do the working equivalent of struct homework[15]?