Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Can someone please help with this programming assignment cuz iam really stuck on

ID: 3613571 • Letter: C

Question

Can someone please help with this programming assignment cuz iam really stuck on this 1 ?

Begin your assignment by using vi or another editor to createyour programming assignment. Name your file "tax_calc.c." orsomething similar. At the top of your file, add commentssimilar to those in your Homework 1 file to tell the reader who youare, what class this program is for, and which assignment you arewriting.

Next, use preprocessor statements to include the library headerfiles you will need for your program to work and to define asymbolic constant named TAX, representing the percentage tax youwill be calculating within your program.

You will need to create at least two functions: a main()function that will control your overall program flow, and afunction that you will call from main() to calculate the amount oftax required. You will need to have a user interface inmain() that requests input from the user, and then reads in thatinput. You must then pass the $ amount of the new item as aparameter to a function that computes the amount of tax and returnsthat amount using a return statement. Upon returning tomain(), you will need to use formatted printf statements to neatlyprint a statement to the user telling him/her the amount of taxthat will be charged on the current item, and the total cost of theitem, including tax.

Explanation / Answer

please rate - thanks #include #include #define TAX .08 double calctax(double); int main() {double price, total,tax; printf("The tax rate is %.2lf%% ",TAX*100.); printf("Enter the item price (