I think you are still using two diamensional array
one as pointer and second as array diamension
if it is allowed then use containers or pointers to pointers ie
**<parameter>[] or ***<parameter>
On 26 Mar 2007 14:48:51 -0700, mr_gees100_peas <[EMAIL PROTECTED]> wrote:
>
> 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.
>
>
>
[Non-text portions of this message have been removed]