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 the difference?
feedback
|
The C standard recognizes the original terms stood for left and right as in By the same token, the standard has abandoned the term rvalue, and just uses "the value of an expression", which is practically everything, including literals such as ints, chars, floats, etc. Additionally, anything you can do with an rvalue can be done with an lvalue too, so you can think of all lvalues as being rvalues. | |||||||||||||||||
feedback
|
|
| |||||||||||
feedback
|
|
there's a definition for C++ from Microsoft. By this definition, a literal string, say "hello world", is lvalue, because it's const and not temporary. Actually it persists across your application's lifetime. | |||
|
feedback
|