Pseudocode and C code for a program

  1. Write a flowchart (or pseudocode) and C code for a program that does the following:

    o Declares variables with float (real) data types.
    o Assigns the tax rate = .08
    o Asks the user to enter the sales amount
    o Computes the sales tax by multiplying the sales by the tax rate
    o Displays the sales tax with the appropriate message
    o Create an assignment statement that computes the total sales, including the tax amount.
    o Output a final message along with the total sales amount
    o Be sure to add comments throughout your program describing what is happening