Static local vars are sort of like globals except that the compiler only lets that one function access it. All statically-allocated objects (builtin or user-defined types), including static member variables of structs/classes, are initialized once by the system before it calls your main() function. You can use this characteristic to your advantage (or get some curious behavior if you don't know what's going on) by making global (or static file-scope) instances of a class, and in the class constructor, do something interesting. That code will run before main() starts.
BUT.... You have to be careful doing that. There is no standard way of forcing the order of these initialized objects, so if one depends on another being already initialized, what "works fine" one day may start "not working fine" when you change compilers or compiler options, or add/remove source files, etc.