Question
C++ Step 1: Requirements: An Address Database Create a C++ console application that will store and retrieve names and addresses in a text file. The
C++
Step 1: Requirements: An Address Database | ||||
Create a C++ console application that will store and retrieve names and addresses in a text file. The program should do the following. It should accept a series of names and addresses from the console. The user's input should be written to a text file in the CSV format described in the lecture, but do not include the field names in the first row of the file. Read the records from the text file, and display them in a user-friendly format. Provide a menu to allow the user to append records to the file, display the records, or exit the application. Build upon the code below to complete the assignment.
| ||||
Step 2: Processing Logic | ||||
Using the pseudocode below, write the code that will meet the requirements. The pseudocode for the writeData function is shown below.
The program input should appear similar to this.
The file structure should look like this.
The file output should appear similar to the following.
|
Step 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