What is the difference between an instance/data member(variable) and a static variable?
Answer
Main difference between instance and static variable is thateach object of the class have their own instance of instance/data member variables declared in the class.but all objects of the class share a single instance of a static variable declared in the class.