The Library Management System (LMS) is a simple yet efficient application implemented in both Python and C. It helps in managing books, student records, and book transactions seamlessly.
- π Book Management: Add, delete, update, and search for books.
- π§βπ Student Management: Track student borrowing and returning of books.
- π Transaction Records: Maintain a detailed history of book transactions.
- β³ Penalty Handling (C Version): Automatically calculate fines for late book returns.
- C: Efficient and structured approach for handling library operations.
- Python: Easy-to-use implementation for flexible management.
- Compile and run the C version:
gcc lms.c -o lms ./lms
- Run the Python version:
python lms.py