Write a declaration for a variable rate_of_pay that can hold values like 11.50 or 12.75.
LANGUAGE: C++
CHALLENGE:
Write a declaration for a variable rate_of_pay that can hold values like 11.50 or 12.75.
SOLUTION:
float rate_of_pay;
Write a declaration for a variable rate_of_pay that can hold values like 11.50 or 12.75.
float rate_of_pay;