Using C++
Consider an example of a grocery store system. The system stores the name of each customer, their (numeric) ID, and the amount to be paid. Create the system using structures.
• The system stores the name, ID, and bill of each user.
• The system can store records of up to 10 customers and flags an error if this limit is exceeded.
• It can search records based on the customer's name/ID and display their data.
• The system displays all current data.
• Implement the same program using functions for searching and display.