Q. Which of the following will compile successfully?
Code:const int a; a = 5;
β
Correct Answer: (B)
No
Explanation: const means the variable cannot be modified once declared.