Hi, I have the following string arrays.
char *arr1[] = {"john", "paul", "ringo"};
char *arr2[] = {"apple", "oranges"};
char *arr3[] = {*arr1, *arr2};
What I want to do is access the content of arrays 1 and 2 inside of
array 3. How do I go about this? And no I can't use a two dimensional
array.
