hye..can somebody help me with these problems as soon as possible?? really need your guys help
Create a phone book program that allows users to enter names and phone numbers of friends and acquaintances. Create a structure to hold contact information .The user should be able to add phone book entries through a menu in a loop. Your structure should hold first name, last name, email address, and phone number.
Hint: Your main program should create a structure in by using example below.
typedef struct contact {
char first_name[20];
char last_name[20];
char email[20];
char phone[10];
} c;
2. Create the ability to edit contact information for a person (Add it to your menu). Ask the user for the first name, last name of the contact to edit. Search through your array and find the item. If the person is not in the list, then print a message to the user saying that. If the person is in the list, ask them for the new email address and phone number and update the structure accordingly.
3. Add the ability (another menu option) to save your contact information to a file. The data should be stored as name email address phone number