Home » C Programming » Constants » Question
  1. Which of the following statement is false?
    1. You cannot reassign a value to a constant variable
    2. const keyword is used to define constant values
    3. Global constant variables are initialized to zero
    4. Constant variables need not be defined as they are declared and can be defined later
    5. 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.



Your comments will be displayed only after manual approval.