Answer:
what is the other language 
is it Assamese clarify me in the comment section bro
 
        
             
        
        
        
Answer:
See Explaination 
Explanation:
#include <iostream>
#include <string.h>
using namespace std;
char *mixem(char *s1, char *s2);
int main() {
 cout << mixem("abc", "123") << endl;
 cout << mixem("def", "456") << endl;
 return 0;
}
char *mixem(char *s1, char *s2) {
 char *result = new char[1 + strlen(s1) + strlen(s2)];
 char *p1 = s1;
 char *p2 = s2;
 char *p = result;
 while (*p1 || *p2) {
 if (*p1) {
 *p = *p1;
 p1++;
 p++;
 }
 if (*p2) {
 *p = *p2;
 p2++;
 p++;
 }
 }
 *p = '\0';
 return result;
}
 
        
             
        
        
        
Answer:
Explanation:
The following code is written in Python and creates the function as requested in the question...
def phone2address(phonebook, addressBook, friendName):
    phoneNumber = phonebook.get(friendName)
    address = addressBook.get(phoneNumber)
    return address
The function uses the dictionary (phonebook) to look for the friendName input as the key and then saves the phone number attached to that name in a variable called phoneNumber. Then we use that variable to search the addressBook dictionary to find the associated address and save it to the address variable. Finally, we return that address.