The C Programming Language
It is not uncommon to define constant pointers to non constant (i.e., mutable) values. So if you do not expect an array to move, but its content to change:
- Can you define an array with constant (const) address, but mutable elements?
- If yes, then how?