Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Follow the instructions. Functional Requirement Create a menu-driven program that offers the user a chance to create, search, and display a list of dog names:
Follow the instructions.
Functional Requirement Create a menu-driven program that offers the user a chance to create, search, and display a list of dog names: g Name Organizer 1. Add one dog name to the end of the list 2. Search for a dog name within the list 3. Display the list 4. End the progranm Menu Option 1: All dog names must be at least one character in length. Allow no more than 20 names to be added to the list in any given run of the program. Don't allow the program to cr Menu Option 2: ash - keep a counter Input a dog name to search for. Use a linear search to determine if that dog is present. If the dog is present then tell WHERE it is found (ie, what position number). If not, then tell the user that too For example The dog JONAS was found at position 2. or The dog JONAS was not found Menu Option 3: Display the names vertically, one per line. Programming Rules: You must use an array of strings to hold the list of names. That array must be declared in main0 and then passed around to the various functions. Don't forget to include the string library (#includeStep 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