Q. Which of the following is the correct ways to set a value 3.14 in a variable pi such that it cannot be modified?
β
Correct Answer: (C)
const float pi = 3.14F;
You must be Logged in to update hint/solution