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. */

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter8: I/o Streams And Data Files
Section: Chapter Questions
Problem 8PP: (Data processing) A bank’s customer records are to be stored in a file and read into a set of arrays...
icon
Related questions
Question

(C Program - this is not graded)

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
Chicken salad sandwich Not available
classic cheeseburger Not available
Cheeseburger
Salads
Caesar salad Chunks of romaine heart lettuce dressed with lemon juice Available
Salads Asian salad Mixed greens with ginger dressing, sprinkled with sesame Not available
Beverages
Water 16oz bottled water Available
Beverages
Mexican food
Mexican food
Vegetarian
the output of the program is:
SELECTED89
1 #include <stdio.h>
2 #include <string.h>
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
Ham sandwich Classic ham sandwich
Chicken salad sandwich
4 int main(void) {
5
6
7
8
9 // Declare 4 string arrays to store the 4 columns from the input text file
14
Coca-Cola 16oz Coca-Cola Not available
Chicken tacos Grilled chicken breast in
10 char column1 [MAX_LINES] [MAX_STRING_LENGTH];
16
11 char column2 [MAX_LINES] [MAX_STRING_LENGTH];
12 char column3 [MAX_LINES] [MAX_STRING_LENGTH];
13 char column4 [MAX_LINES] [MAX_STRING_LENGTH];
17
18}
Available
Beef tacos Ground beef in freshly made tortillas Available
Avocado sandwich sliced avocado with fruity spread Not available
15 /* Type your code here. */
19
return 0;
made tortillas
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
available
Transcribed Image Text: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 Chicken salad sandwich Not available classic cheeseburger Not available Cheeseburger Salads Caesar salad Chunks of romaine heart lettuce dressed with lemon juice Available Salads Asian salad Mixed greens with ginger dressing, sprinkled with sesame Not available Beverages Water 16oz bottled water Available Beverages Mexican food Mexican food Vegetarian the output of the program is: SELECTED89 1 #include <stdio.h> 2 #include <string.h> 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 Ham sandwich Classic ham sandwich Chicken salad sandwich 4 int main(void) { 5 6 7 8 9 // Declare 4 string arrays to store the 4 columns from the input text file 14 Coca-Cola 16oz Coca-Cola Not available Chicken tacos Grilled chicken breast in 10 char column1 [MAX_LINES] [MAX_STRING_LENGTH]; 16 11 char column2 [MAX_LINES] [MAX_STRING_LENGTH]; 12 char column3 [MAX_LINES] [MAX_STRING_LENGTH]; 13 char column4 [MAX_LINES] [MAX_STRING_LENGTH]; 17 18} Available Beef tacos Ground beef in freshly made tortillas Available Avocado sandwich sliced avocado with fruity spread Not available 15 /* Type your code here. */ 19 return 0; made tortillas 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 available
Expert Solution
steps

Step by step

Solved in 8 steps with 4 images

Blurred answer
Knowledge Booster
Array
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning