for a specific example in my code:

Code:
for(i=0; i< M-1; i++)
            {
              if(age[i][0] == 0)
                {
                  addr_temp = i;
                  j=0;
                  do
                    {
                      name[addr_temp][j] = name2[j];
                      j++;
                    }
                      while(name2[j] != '\0');

                  break;
                }
            }
Can someone show me how I would transfer a single array (name2[j]) to a multi-dimensional array (name[addr_temp][j]) ? How would I assign and declare the pointers for the multi-dimensional array pointer?