Multiple choice

External variable is automatically initialized to ___________.

  1. 0

  2. 1

  3. -1

  4. None of the above

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

External variables (declared with extern keyword) are automatically zero-initialized in C/C++. This ensures global and external variables start with a predictable value when no explicit initialization is provided.