During normal program termination, any registered callbacks using std::atexit are executed as part of the cleanup. The callbacks follow the initialization and destruction rules from C++11.
For example, if a construction of a static object was ordered before a callback is registered, the destruction of that object will be sequenced after the callback is invoked.
Compiler Explorer link: https://compiler-explorer.com/z/o5zqq79sf