C | Variable Declaration and Scope | Question 4
#include <stdio.h> extern int var = 0; int main() { var = 10; printf ( "%d " , var); return 0; } |
(A) 10
(B) Compiler Error: var is not defined
(C) 0
Answer: (A)
Explanation: If a variable is only declared and an initializer is also provided with that declaration, then the memory for that variable will be allocated i.e. that variable will be considered as defined.
Refer: 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.