hello to everyonee first iu want to thank all the persons who are here for helping and teaching us . you are doing great job .
i neeed i help to creat this functions in c programming because i am not good in this langauge i am doing my best to lurn this language and be better than i am now. thanks .
Create a file where you have all the necessary information about persons.
A person is known by his name, surname, sex, date of birth (day, month, year), an ID (5 character eg P0001), the number of children.
All persons will be stored in a linked list.
Functions to do:
- Load the data file into a list of persons (using a structure person).
- Add a person in the list.
- Add the children of a person.
- Remove a person from the list.
- Consult the list of persons.
- Search for a person by name or surname.
- View the number of children of the person given in parameter.
- Return the age of a person.
- Modify the records of a person (update).
- Sort the list according to the person's name and ID.
- Save list data in file.
- Add useful functions if necessary.
Creating a menu for functions.