I have to store 3 strings per variable, but don't know which is the best data structure to use for that in C++.
I can think of only Struct, but not sure if it is the best way to do it.
Something like string var[100][3], first dimension(100) should be dynamically add and remove.
I tried all sorts of things with map, multimap.
Any help is appreciated. Thank you