A simple command-line Movie Library Management System built in C. It demonstrates the use of structures, arrays, and menu-driven programming for managing a collection of movies.
- Add a new movie with title, director, and year
- Display the list of all movies
- Search for a movie by its title (case-insensitive)
- Delete a movie by its unique ID
- Exit the program
- Language: C
- Compiler: GCC or any standard C compiler
- Platform: Command Line / Terminal
git clone https://github.com/yourusername/movie-library-c.git
cd movie-library-c
gcc movie_library.c -o movie_library
./movie_library