Question: Create a C Program Create a Check node structure. Include: Check number (should be an integer). Date (use type char[ ]). To Amount Description Pointer
Create a C Program
Create a Check node structure. Include:
Check number (should be an integer).
Date (use type char[ ]).
To
Amount
Description
Pointer to the next Check node
Add functions to:
Add a Check to the checkbook. Collect all information for a single check and add it to the checkbook. Call the function to display the values for the check before adding the check.
Delete a check from the checkbook. Use the check number to identify the check to be deleted.
Display the values for a single check. Format the amount for two decimal places.
Display the values for the entire checkbook, one check at a time.
In the main function:
Create a checkbook. It should be a linked list.
Repeat until the user quits. Give the user these options:
Add a check.
Delete a check.
Display a single check.
Display the checkbook.
Quit.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
