Which оf these is nоt а chаrаcteristic оf technical writing?
Stоre Purchаse Applicаtiоn Nаme: FLastnameChartingI2Descriptiоn: Write a C program that calculates the total cost of purchasing multiple items in a store. Include comments throughout. Note: The sample output shown below is for illustrative purposes only and cannot be used as data for your application. You should come up with your own Name, items and prices. Requirements: Store Name The program should use constants for the prices of three different items and the sales tax rate. The user will input the quantity of each item they wish to purchase. The program should then calculate: The total cost for each item (price × quantity). The subtotal (sum of all item costs). The sales tax (calculated as subtotal * tax). The final total (subtotal + tax). The program should display a formatted receipt (lined up properly and all monetary values should be displayed in currency format (dollar sign and 2 decimal places)) that includes: Store Name Itemized costs Subtotal Tax Total Amount Due Add headings and Separators where appropriate Sample Output =========================== Sam's General Store ===========================Item Qty Price Total -------------------------------------------Bread 2 $5.99 $11.98Milk 3 $3.49 $10.47Toothpaste 1 $7.99 $7.99-------------------------------------------Subtotal: $30.44Sales Tax (8.25%): $2.51-------------------------------------------Total Amount Due: $32.95