// Bad #define MY_CONSTANT_VALUE 42 // Good constexpr int MyConstantValue = 42; // Note the naming change here, caps should only be used for preprocessor defines