c++ A contact list is a place where you can store a specific contact with other
ID: 3847385 • Letter: C
Question
c++
A contact list is a place where you can store a specific contact with other associated information such as a phone number, email address, birthday, etc. Write a program that first takes as input a list of N word pairs representing a name and a phone number (both strings). That list is followed by a name, and your program should output that name's phone number. If the input is: the output is: 867-5309 For full credit, define and use a function: string Get Phone Number (vector name Vec, vector phone Number Vec, string Contact Name). The return value of Get Phone Number is the phone number associated with the specific contact name.