What does `extern int x;` mean?
Question 1
Q1. What does `extern int x;` mean?
Answer: x is defined elsewhere
Explanation: Extern keyword declares a variable defined elsewhere, typically in another file. NET computer science MCQs often test this core concept.