Home »
MCQs »
C++ MCQs
Which of the following statement is correct about the global variable?
63. Which of the following statement is correct about the global variable?
- A variable defined inside the function or block is known as a global variable.
- A variable defined outside the function or block is known as a global variable.
- Global variables can only declare inside the “.h” file.
Answer: B) A variable defined outside the function or block is known as a global variable.
Explanation:
The 2nd statement is correct about the global variable.