Where would you put global constants in a C++ application? For example would you put them in a class? In a struct?
One option is putting them into a class as non-static members and putting an object of that type inside your main() function. That simplifies making them non-globals when you find out that you need to, for whatever the reason.