Is it possible to create a dynamic-sized array of structures within a structure?
To provide some info, I want to read some student info off an input file, which includes some miscellaneous information, subject codes and corresponding marks. The number of subjects taken is also provided as a number in the file itself. My intention is to have the program determine how many structs of subjects are required for each struct of student.
Thanks.