C++ Containers Question:

What are External variable?

C++ Containers Interview Question
C++ Containers Interview Question

Answer:

External variable are defined outside any function and memory is set aside for this type of variable once it is declared and remained until the end of the program. These variables are also called global variables.


Previous QuestionNext Question
What is Automatic variable?What are static automatic variables?