- 6 Using The Following Struct Definition Build A Linked List By Prompting The User To Enter A Sequence Of Letters Endin 1 (23.96 KiB) Viewed 34 times
6) Using the following struct definition, build a linked list by prompting the user to enter a sequence of letters endin
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
6) Using the following struct definition, build a linked list by prompting the user to enter a sequence of letters endin
6) Using the following struct definition, build a linked list by prompting the user to enter a sequence of letters ending with the number 9. After you have built this list, you should prompt the user to enter a letter to search for in the list. If the search is successful, the output the letter. Otherwise, output an error message saying that the letter is not in the list. Please use the space below to copy and paste your source code for this problem and provide a screenshot of the output (10 pts). struct nodeType char letter; nodeType* link; };