Answer:
float taxRate = 0.085f
Explanation:
Variable initialisation in C (or any other programming language) is a way of declaring variable and assigning some values to the variable declared.
To initialise a variable in C, the data type, variable name and value are needed.
The following syntax must be obeyed when initialising a variable:
Data-type variable-name = value
Data-type represents which type of value is going to be stored in the variable.
Variable name, also known as identifier represents valid variable name (name of the allocated memory blocks for the variable).
Value represents the value or content of the declared variable.