Consider the following two C lines
int var1; extern int var2; |
Which of the following statements is correct
(A) Both statements only declare variables, don’t define them.
(B) First statement declares and defines var1, but second statement only declares var2
(C) Both statements declare define variables var1 and var2
Answer: (B)
Explanation: See Understanding “extern” keyword in C
Quiz of this Question
Attention reader! Don’t stop learning now. Get hold of all the important C++ Foundation and STL concepts with the C++ Foundation and STL courses at a student-friendly price and become industry ready.