C++ why compile time variable is immutable??
i don't know why compile time variable (constexpr) is immutable?? i think const variable is valuable. because it stop developer change value by mistake
but why does constexpr force const and compile time evaluation both. i think there should be non const and compile time evaluated variable. but there isn't
and i think compile time variable can be changed. accessing to variable memory and modifying look not impossible.
but why i can't change compile time evaluated variable??
compile time variable isn't store at memory??