Possible Duplicates:
lvalue and rvalue
difference between c's expression and c++'s expression

On executing the program below, I got error an message like "required Lvalue is missing in main function"

main()
{
    int i;
    printf("%d",++i++);
}

Please tell me what are rvalues and lvalues. If there are any other values of this kind Please explain that also.

link|improve this question

67% accept rate
Duplicate of the incredibly badly titled: stackoverflow.com/questions/3572753/… – Charles Bailey Sep 3 '10 at 12:54
@Vladimir: What you've referenced is much more C++ and specifically C++0x oriented, though. It's a bit less relevant for C. – Charles Bailey Sep 3 '10 at 12:55
@Vladimir: no, that is about C++0x, not about C at all. – Philip Potter Sep 3 '10 at 12:56
Many, many duplicates. Query: google.com/… – Hans Passant Sep 3 '10 at 12:56
@NEO to be honest, if you think about it for a moment, why would you ever want to write such code? – Anders K Sep 3 '10 at 13:03
show 1 more comment
feedback

closed as exact duplicate by Vladimir, Hans Passant, Charles Bailey, jjnguy, Bill the Lizard Sep 3 '10 at 13:05

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

http://www.devx.com/tips/Tip/5696

link|improve this answer
It's really helpfull friend.Thank you – NEO Sep 4 '10 at 12:41
feedback

i thing ++i not lvalue so (++i)++ is error.

link|improve this answer
feedback

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