Declare a structure Phone that has three int fields called country, area and number. In main,declare a pointer variable to a Phone structure named new Phone. Then write assignment statements to indirectly (using the pointer) store the values 1, 888 and 5551122 into these fields. Write a Boolean value returning function called Shallow Compare that takes two variables of type pointer to phone structure (declared | in part a), and returns true if they point to the same structure, and false otherwise. For (a) Output should be like this : Country code :1 Area code :888 Number :5551122 For (b) Output should be like this : Two structure variables are pointing to same structure . //if returns true; Two structure variables are not pointing to same structure . //if returns false;