When programming in C, is it possible to set a const with a value of a user-input? If so, how?

link|improve this question

67% accept rate
2  
No. If it was it wouldn't be a const would 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
feedback

6 Answers

up vote 6 down vote accepted

Why not?

void some_function(int user_input)
{
    const int const_user_input = user_input;
    ...
    return;
}

int main (void)
{
    int user_input;
    scanf("%d", &user_input);
    some_function(user_input);
    return 0;
}
link|improve this answer
Thanks! that's exactly what I was looking for. – Izhak Nov 8 '11 at 12:11
feedback

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.)

int get_user_input(void)
{
    int user_input;
    scanf("%d", &user_input);
    return user_input;
}

int main(void)
{
    int const user_input = get_user_input();
    ...
    return 0;
}
link|improve this answer
feedback

In addition to the other answers (which all say no), you could do some ugly things like

static const int notsoconst = 3;
scanf("%d", ((int*) &notsoconst));

But this could compile, but it probably would crash at runtime (and is probably undefined behavior in the C language specification), because notsoconst would be put in a read-only segment (at least with GCC on Linux)

link|improve this answer
2  
It's definitely undefined behavior (6.7.3/5: "If an attempt is made to modify an object defined with a const-qualified type through use of an lvalue with non-const-qualified type, the behavior is undefined.") – Steve Jessop Nov 8 '11 at 10:14
feedback

A const variable is C is technically read only. So one can't set it from user-input

link|improve this answer
feedback

No, const is enforced at compile time. You need to take your own measure to enforce const at runtime.

link|improve this answer
feedback

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

link|improve this answer
Not always true: A local variable can be const, and initialized by a run-time value, at least in C99 and many C89 variants. – Johan Bezem Nov 8 '11 at 10:01
@JohanBezem OP never mentioned scope, so it's best to err on the side of caution and say no. – moshbear Nov 8 '11 at 11:00
-1, your first half sentence is just plain wrong. – Jens Gustedt Nov 8 '11 at 12:26
i've edited my answer – Gil.I Nov 8 '11 at 13:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.