I have a huge data in excel sheet. I need to prepare a structure for that data and fill the data. I can do it in 2 ways.
statically fill the structure during struct initialization
struct x a[] = { }
Dynamically fill the structure by allocating memory and filling it in a function.
My structure also looks little complicated. How do I fill this structure?
One record of excel sheet looks like:
region name, list of languages supported, list of encodings supported
How do I define a structure for such data and fill it?