Given a text file containing the availability of food items, write a program that reads the information from the text file and outputs the available food items. The program first reads the name of the text file from the user. The program then reads the text file, stores the information into the four string arrays predefined in the program, and outputs the available food items in the following format: name (category) -- description Assume the text file contains the category, name, description, and availability of at least one food item, separated by a tab character ('\t') Hints: Use the fgets() function to read each line of the input text file. When extracting texts between the tab characters, copy the texts character-by-character until a tab character is reached. A string always ends with a null character ('\0'). Ex: If the input of the program is: food.txt and the contents of food.txt are: Sandwiches Sandwiches Sandwiches Cheeseburger Classic cheeseburger Caesar salad Ham sandwich Classic ham sandwich Chicken salad sandwich Salads Available Chunks of romaine heart lettuce dressed with lemon juice Salads Asian salad Mixed greens with ginger dressing, sprinkled with sesame Not available Beverages Water 16oz bottled water Available Coca-Cola 16oz Coca-Cola Not available Beverages Mexican food Chicken tacos Grilled chicken breast in freshly made tortillas Not available Mexican food Beef tacos Ground beef in freshly made tortillas Vegetarian Avocado sandwich sliced avocado with fruity spread Not available Available the output of the program is: 1 #include 2 #include Ham sandwich (Sandwiches) - Classic ham sandwich Caesar salad (Salads) -- Chunks of romaine heart lettuce dressed with lemon juice Water (Beverages) - 16oz bottled water Beef tacos (Mexican food) -- Ground beef in freshly made tortillas 3 4 int main(void) { 5 6 7 8 9 10 11 12 13 14 15 16 17 18} 19 Available Chicken salad sandwich Not available Not available return 0; const int MAX_LINES = 25; // Maximum number of lines in the input text file const int MAX_STRING_LENGTH = 100; // Maximum number of characters in each column of the input text file const int MAX_LINE_LENGTH = 200; // Maximum number of characters in each Line of the input text file // Declare 4 string arrays to store the 4 columns from the input text file char column1 [MAX_LINES] [MAX_STRING_LENGTH]; char column2 [MAX_LINES] [MAX_STRING_LENGTH]; char column3 [MAX_LINES] [MAX_STRING_LENGTH]; char column4 [MAX_LINES] [MAX_STRING_LENGTH]; /* Type your code here. */
Given a text file containing the availability of food items, write a program that reads the information from the text file and outputs the available food items. The program first reads the name of the text file from the user. The program then reads the text file, stores the information into the four string arrays predefined in the program, and outputs the available food items in the following format: name (category) -- description Assume the text file contains the category, name, description, and availability of at least one food item, separated by a tab character ('\t') Hints: Use the fgets() function to read each line of the input text file. When extracting texts between the tab characters, copy the texts character-by-character until a tab character is reached. A string always ends with a null character ('\0'). Ex: If the input of the program is: food.txt and the contents of food.txt are: Sandwiches Sandwiches Sandwiches Cheeseburger Classic cheeseburger Caesar salad Ham sandwich Classic ham sandwich Chicken salad sandwich Salads Available Chunks of romaine heart lettuce dressed with lemon juice Salads Asian salad Mixed greens with ginger dressing, sprinkled with sesame Not available Beverages Water 16oz bottled water Available Coca-Cola 16oz Coca-Cola Not available Beverages Mexican food Chicken tacos Grilled chicken breast in freshly made tortillas Not available Mexican food Beef tacos Ground beef in freshly made tortillas Vegetarian Avocado sandwich sliced avocado with fruity spread Not available Available the output of the program is: 1 #include 2 #include Ham sandwich (Sandwiches) - Classic ham sandwich Caesar salad (Salads) -- Chunks of romaine heart lettuce dressed with lemon juice Water (Beverages) - 16oz bottled water Beef tacos (Mexican food) -- Ground beef in freshly made tortillas 3 4 int main(void) { 5 6 7 8 9 10 11 12 13 14 15 16 17 18} 19 Available Chicken salad sandwich Not available Not available return 0; const int MAX_LINES = 25; // Maximum number of lines in the input text file const int MAX_STRING_LENGTH = 100; // Maximum number of characters in each column of the input text file const int MAX_LINE_LENGTH = 200; // Maximum number of characters in each Line of the input text file // Declare 4 string arrays to store the 4 columns from the input text file char column1 [MAX_LINES] [MAX_STRING_LENGTH]; char column2 [MAX_LINES] [MAX_STRING_LENGTH]; char column3 [MAX_LINES] [MAX_STRING_LENGTH]; char column4 [MAX_LINES] [MAX_STRING_LENGTH]; /* Type your code here. */
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
(C
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 8 steps with 4 images
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education