Select Answer
No difference -- both are compile-time constants
const means read-only (value may be computed at runtime); constexpr guarantees the value is computed at compile time
const
constexpr
constexpr uses more Flash than const
const is compile-time; constexpr is runtime