In c write a program that: a) takes an input file name from the command line; b) opens that file if possible; c) declares a C struct with three variables; these will have data types that correspond to the data types read from the file (i.e. string, int, float); d) declares an array of C structs (i.e. the same struct type declared in point c); e) reads a record from the file and stores the values read into the appropriate struct variable at the appropriate array index (for that record); f) continues reading each record into a struct (as in point 1e), and stores each struct containing the 3 values into the array of structs declared in point d; g) closes the file when all records have been read. Note that your program should print an error message in the event that the file cannot be opened successfully.

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

. In c write a program that:
a) takes an input file name from the command line;
b) opens that file if possible;
c) declares a C struct with three variables; these will have data types that
correspond to the data types read from the file (i.e. string, int, float);
d) declares an array of C structs (i.e. the same struct type declared in point c);
e) reads a record from the file and stores the values read into the appropriate
struct variable at the appropriate array index (for that record);
f) continues reading each record into a struct (as in point 1e), and stores each
struct containing the 3 values into the array of structs declared in point d;
g) closes the file when all records have been read.
Note that your program should print an error message in the event that the file
cannot be opened successfully.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

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