I have many pieces of sorted data to use like below:
['US', 23, 'Andy', 'adress....' ] ['CA', 34, 'White', '........' ] ..... .....
I'd like to crate a structure like c struct to be self description of every element meaning:
struct test{ char* state; int age; char* name; ... ... };
In this case, I think a hash is not appropriate because