I have a little class called Stuff that I want to store things in. These things are a list of type int. Throughout my code in whatever classes I use I want to be able to a
Just For your Information, why this works is that in C++ all global variables (including static global) are created before the execution of the main function begins.