Tagged Questions

4
votes
8answers
179 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 rval …
0
votes
6answers
309 views

“l-value required” error

When do we get "l-value required" error...while compiling C++ program???(i am using VC++ )
3
votes
5answers
154 views

Binding temporary to a lvalue reference

I have the following code string three() { return "three"; } void mutate(string& ref) { } int main() { mutate(three()); return 0; } You can see I am passing t …
2
votes
4answers
190 views

Why do some c++ compilers let you take the address of a literal?

A C++ compiler that I will not name lets you take the address of a literal, int *p = &42; Clearly 42 is an r-value and most compilers refuse to do so. Why would a compiler allow …
5
votes
2answers
440 views

Why are C++0x rvalue reference not the default?

One of the cool new features of the upcoming C++ standard, C++0x, are "rvalue references." An rvalue reference is similar to an lvalue (normal) reference, except that it can be bou …
6
votes
13answers
1k views

Why is ++i considered an l-value, but i++ is not?

Why is ++i is l-value? and i++ not Initially there were 2 questions one was removed since that was exact duplicate. So don't down vote the answers that were answering difference …
3
votes
2answers
304 views

Are std::streams already movable?

GNU gcc 4.3 partially supports the upcoming c++0x standard: among the implemented features the rvalue reference. By means of the rvalue reference it should be possible to move a no …