Problem
You are writing a program to keep track of a manufacturing company's inventory. For each part, the program needs to store the following information. Part Number (between 10000 and 99999) Cost (between $0.00 and $99,999.99) Quantity (Natural)
a. Write all the declarations needed to declare a record type called Inventory_Rec that contains these three pieces of information.
b. Write a procedure and the necessary declarations to get a variable of record type Inventory_Rec from the keyboard. You need not display prompts.