-
Which of the following statement is false?
-
- You cannot reassign a value to a constant variable
- const keyword is used to define constant values
- Global constant variables are initialized to zero
- Constant variables need not be defined as they are declared and can be defined later
- None of these
Correct Option: D
Since the constant variable has to be declared and defined at the same time, not doing it results in an error.