I know, We can copy or append elements of array. But, I have around 100 elements in an array. Is there any other way available so I can append array to first array.
Consider I have this two arrays.
String name1[]={"abc", "def", "ghi"};
String name2[]={"jkl", "mno", "pqr"};
I want to append name2 array at the end of name1.
Please help me.
would be grateful for help.