Multiple choice

Which of the following statements is false in C language?

  1. Auto keyword is necessary to declare the automatic variables.

  2. By default, the variables declared are called automatic variables.

  3. Static variables can be accessed till the end of the program.

  4. External variables can be accessed till the end of the program.

  5. None of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

It is not a mandatory condition to declare the automatic variables by using auto keyword.