When programming in C, is it possible to set a const with a value of a user-input?
If so, how?
|
|
||||
|
Why not?
|
|||
|
|
|
you can have that even more directly than in Dadam's answer. (Normally I would have put just in a comment, but it is easier to put that in code directly.)
|
|||
|
|
|
In addition to the other answers (which all say no), you could do some ugly things like
But this could compile, but it probably would crash at runtime (and is probably undefined behavior in the C language specification), because |
|||||
|
|
A const variable is C is technically read only. So one can't set it from user-input |
|||
|
|
|
No, const is enforced at compile time. You need to take your own measure to enforce const at runtime. |
|||
|
|
|
Linker usually locate global const in read-only space (like code space) and therefore it cannot be changed later on See comments on local const |
|||||||||||
|


constwould it. Perhaps if you describe the problem you are trying to solve, rather than the (impossible) solution you are trying to implement. – samjudson Nov 8 '11 at 9:22