Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Problem : Using singly linked list, create a C program that simulates an inventory system. The program must meet the following requirements: 1. Ability to
Problem: Using singly linked list, create a C program that simulates an inventory system. The program must meet the following requirements:
1. Ability to add an Item
2. A feature to search a particular item based on its property (atleast three) and display its properties. (i.e., number of stocks, item code, description)
3. Add/subtract stocks of an item
4. View all items
5. Remove an item
6. Modify an item
7. Register and Login feature (use a separate structure for users)
8. Main Menu once user has been verified.
Program Flow:
- The first menu will provide two options: login and register
- Once registered, user can use his/her credential to use the system
- For verified user, display the main menu for inventory
- Display a warning/error for unverified user
- No item can be added in the structure if the item code already exists
- No user can be registered if the username already exists
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started