Answer :
Answer:
The answer is "0".
Explanation:
The static variable is a member variable, which was configured at the start of implementation once only. It uses the static keyword to define any variable, It generates only one copy of the value throughout the program.
- In C++, when the class is static so, there is no need to create an object of the class.
- When we declare the static variable it automatically assigns value "0" to a variable, that's why the answer is 0.