Answer:
Option C
Explanation:
Const keyword is used for the constant variables with fixed value and any modification in its value will throw an error. Hence, options a, b and d are rejected because value is not declared fixed. So, const float pi = 5.28F is the correct way of declaration of constant variable.