Tagged Questions

20
votes
3answers
513 views

Why pre-increment operator gives rvalue in C?

In C++, pre-increment operator gives lvalue because incremented object itself is returned, not a copy. But in C, it gives rvalue. Why?
9
votes
3answers
2k views

lvalue and rvalue

Just wonder if a literal string is a lvalue or a rvalue. Are other literals (like for int, float, char etc) lvalue or rvalue? Is the return value of a function a lvalue or rvalue? How do you tell ...
0
votes
2answers
229 views

what is the Rvalue and Lvalue in c [closed]

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