Tagged Questions

20
votes
3answers
546 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 ...
5
votes
7answers
277 views

where is rvalue stored in c?

in C, i have this code piece: int a; a = 10 + 5 - 3 I want to ask: where is (10+5-3) stored at? (As far as I know, a is located on stack, how about (10+5-3)? How does this rvalue get calculated?)
4
votes
6answers
202 views

What is the scope of a literal value, and how does the compiler allocate memory to it?

int x = 12; 12 is said to be integer literal, and therefore can't be used in the LValue. How does the compiler allocate memory to a literals? What is the scope of a literals? Why can't we get ...
1
vote
3answers
60 views

Lvalues, Rvalues and Array Initialisation in C

Being able to define an array e.g. int a[] = {1,2,3}; is very convenient, however, the array a is an r-value so I can't subsequently change the values in a, e.g. a[] = {4,5,6}; The context for ...
0
votes
2answers
232 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 ...