Cpp static variables

From wikinotes

In CPP, class variables (variables that are shared by all instances of class) are initialized outside of the class.

int MyClass::var=0;