C++ Static Data Question:
Download Questions PDF

What is static variable?

C++ Static Data Interview Question
C++ Static Data Interview Question

Answer:

Static variables are the variables which has exactly one copy per class. They belong to the class as a whole but not for its instances (objects). All static variables are declared by using the modifier ‘static’.

For example:

Download C++ Static Data Interview Questions And Answers PDF

Previous QuestionNext Question
Can you please explain what is class using C++?What is static type varidentifier?