I’m wondering if there is a benefit in using:
constexpr data_type variable = bound_value; (within the scope of a function such as main() )
over just creating a global constant outside of any function such as:
int WORD_LENGTH = 8;
int main(){
…
std::cout << WORD_LENGTH << std::endl;
…
return 0;
}