In C#, there is coding on string like this, to declare 2D array of string :
Detail = new string[10][]; Detail[0] = new string[] {"A","B","C"}; Detail[1] = new string[] {"D","E","F"}; ............ .............
Then how can I convert the above in a C++ environment