The Address Book Management System is a C-based application used to manage contact information efficiently through a command-line interface. The project allows users to add, search, view, edit, and delete contacts while storing data permanently using file handling. This project demonstrates core C programming concepts such as structures, file handling, pointers, searching, sorting, and modular programming.
- Add new contacts
- View saved contacts
- Search contacts by name or mobile number
- Edit existing contact details
- Delete contacts
- Store contact details using files
- Simple menu-driven interface
- C Programming
- Structures (
struct) - File Handling
- Arrays
- Functions
- Pointers
- String Handling