Create an application that keeps track of students using a vector of structures, knowing that a structure student is defined by: a number, a first name, a last name, an address, an email and a phone number where first name and last name are defined as a structure Person and the address as a structure Address with the following properties:
- I. Number and street name
- II. City name
- III. Postal code
- IV Province/State
Display the student management menu that returns the chosen option by the user.
Create the students (add yourself as student).
Search for a student by his number.
Display the students list.
Delete the student.
Exit the application.
The menu is as follows:
Student Management Application 1. Create and add a student. 2. Search for a student by number 3. Modify the information of the student, but its number 4. Delete the information of the student, with confirmation 5. Display the student list in ascending order (use student number) 6. Exit the application with confirmation Enter your choice: