Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Declare a structure type for the following record (data items): you must chose a name for the structure tag and each of its member variables:
Declare a structure type for the following record (data items): you must chose a name for the structure tag and each of its member variables:
Exercise S2 1. An employee record consisting of: An employee's name (data type string) His/her identification number The pay rate The number of hour of work 2. Given the following structure type: struct TempRecord \{ string tempName; char type; int quantity; double unitPrice; \}; a. Declare structure variables iteml 1 and item 2 of the structure type TempRecord. b. Assign values to the member variables of iteml as follows: - Name: pasta - Type: C - Quantity: 26 - Unit price: 1.75 c. Read values into the member variables of item 2 . d. Compute the price of item 1 and that of item 2 and print themStep 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