Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Error: lvalue required in this simple C code? (Ternary with assignment?)

In the following piece of code I got an error like "lvalue required as left operand of assignment". I am unable to understand why such an error is being reported. But when I am using parenthesis in the expression like (i>j)?(k=i):(k=j) it is not reporting an error. please explain.

int main() {
    int i = 2;
    int j = 9;
    int k;

    (i>j) ? k=i : k=j;
    printf("%d\n",k);
    return 0;
}
share|improve this question
Have a look at Nawaz's answer in: stackoverflow.com/questions/6966299/… – phoxis Aug 22 '12 at 10:43

marked as duplicate by Musa, ouah, Lundin, Mysticial, Donal Fellows Aug 23 '12 at 6:20

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 1 down vote accepted

It's clear that this condition can be rewritten in a better way, but your problem is observed because of the precedence of = and ?: operators.

The assignment operator ?: has higher precedence than =, thus the expression

( i > j ) ? k = i : k = j;

Is equivalent to

(( i > j ) ? k = i : k) = j;

Which is not correct, because you cannot assign to an expression result.

In fact, this case is similar to (( i > j ) : i : j) = 10; which isn't correct either.

share|improve this answer

Without your extra ()s, I think the operator precedence is grouping it as

   ((i>j)?k=i:k)=j;

Which obviously isn't what you want and does have lvalue issues.

Fix it with

  k= (i>j) ? i : j;

share|improve this answer

How about writing like this.

int main()
 {
   int i,j,k;
   i=2;j=9;
   k = (i > j) ? i : j;
   printf("%d\n",k);
   return 0;
 }
share|improve this answer

Rather :

k = i > j ? i : j;
share|improve this answer

You need to assign the return value of this operator . The syntax for ternary operator is following..

result = condition ? first_expression : second_expression;  

that you missing in your code.. So you can simply put it like following..

int k = (i > j) ? i : j;
share|improve this answer

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