A program's main function declares three double variables named sales, tax Rate, and sales Tax. The main function contains the following statement: calc Sales Tax(sales, tax Rate, sales Tax);. The calc Sales Tax function is responsible for calculating the sales tax. Its function header looks like this: void calc Sales Tax(double sold, double rate, double tax). Correct the function header.