I wanted to convert the String array elements into char array
For Example:
String str[]={"abc","defl","ghi"};
I wanted to store the characters in str array to be stored in char arr[] in different indexes
For Ex:
char ch[0][]={'a','b','c'};
ch[1][]={'d','e','f','l'};
ch[2][]={'g','h','i'};
I wanted to do this dynamically,I am able to split the string to characters ,but not able to store it in this order.