L-value represents the address of the value. "L" stands for the left side, because the address it is what is required when the variable appears on the left side of an assignment operation.

learn more… | top users | synonyms

1
vote
1answer
19 views

When can you use a character array's name to make a valid L-value?

Given a pointer and an array, setting one equal to another fails in one case, and works in another. char *c_ptr = "I'm a char pointer"; char c_arry[] = "I'm a char array"; c_ptr = c_arry; //This ...
5
votes
2answers
92 views

Is it valid to bind non-const lvalue-references to rvalues in C++ 11?(modified)

I know in c++03, an an non-const reference cannot be bound to rvalues. T& t = getT(); is invalid, and in c++11, we can do this: T&& t = getT(); but what about the above code, should that ...
0
votes
2answers
92 views

Are lvalues determined at compile time?

In my understanding, an lvalue is just a location, and its corresponding rvalue is the value stored at that location. for example: int x; x = 0; /* the compiler will replace x with the location ...
2
votes
4answers
96 views

How to test lvalue or rvalue in this case

The code is as following: struct A { static int k;   int i; };   int A::k = 10;   A func() { A a; return a; } My question is, how can I tell whether func().k or func().i is an lvalue or not? If ...
3
votes
2answers
40 views

'&' requires l-value on &std::unique_ptr<>.get

I am trying to use the function NuiCreateSensorByIndex(int,INuiSensor**). I am trying not to use naked pointers, so I did std::unique_ptr<INuiSensor> nui; to make it an unique_ptr. Now I want to ...
0
votes
1answer
54 views

Why is it required to return a reference from overloading bracket operators (OR: why is an lvalue not returned otherwise)?

I've tried overloading the bracket operators for a class, to make accessing the array less tedious. What I don't understand is, why is it neccesary to declare the return type of the overload function ...
0
votes
0answers
18 views

Lvalues and pointers mix-up

void GenInsertSort(void *arr, int num, int size, int(*rule)(void *, void *)){ char **beg = (char **)arr; void *toInsert; int ndx=1, insNdx; for (; ndx < num; ndx++) { (char ...
1
vote
2answers
111 views

decltype and lvalue expression

according to http://en.cppreference.com/w/cpp/language/decltype struct A { double x; }; const A* a = new A(); decltype( a->x ) x3; match 1 case, i.e: If the argument is either the ...
0
votes
1answer
54 views

Choose function declaration with lvalue or rvalue parameter

Is there a way to remove the 'plumb' version of all of my functions, without the need to change the 'hit' line to the 'fixed'? Yes my program works fine, but I think if is there a way to get ride ...
0
votes
1answer
33 views

Enumerated data and vector error: expression must be a modifiable lvalue

I am getting the error on the lines where I am inputting "title" and "Author." I'm not quite sure what to do to fix this. struct bookStruct { char title[40]; char author[40]; int pages; ...
-5
votes
5answers
112 views

What is the reason of the names “lvalue” and “rvalue” in C/C++?

What is the reason of the names "lvalue" and "rvalue" in C/C++ (I know what is a lvalue or a rvalue)?
2
votes
2answers
99 views

Why does an lvalue cast work?

I saw this kind of cast for the first time today, and I'm curious as to why this works. I thought casting in this manner would assign to the temporary, and not the class member. Using VC2010. class A ...
0
votes
1answer
18 views

error: lvalue required

// getline : empty string array and max length as input // stores input stream to array and return its length #include<stdio.h> #define LENGTH 100 int getline1(char* , int ); int main(){ ...
0
votes
4answers
92 views

what is return type of assignment operator?

I am just starting C++. All is fine except that I am confused on the return type of assignment and dereference operator. I am following the book C++ Primer. At various occasions, the author says that ...
1
vote
2answers
101 views

structure in c whose members are also structures

I have following structs: typedef struct stack { void* ss_sp; size_t ss_size; // ... } stack_t; typedef struct ucontext { ucontext_t* uc_link; stack_t uc_stack; // ... } ...
0
votes
4answers
218 views

error C2102: '&' requires l-value

The code line: gsl_blas_daxpy(-a,&gsl_matrix_column(D, q).vector,y); cause the error error C2102: '&' requires l-value , now the problem is that I have no control of the GSL functions ...
2
votes
2answers
94 views

Lvalue required error in C

my code is: #include<stdio.h> int main() { int a=10, b; a >= 5 ? b=100 : b=200; printf("%d %d", a, b); return 0; } Here comes a "Lvalue Required" in the line of conditional ...
7
votes
1answer
175 views

why does --list.end() compile?

list's end() returns a copy of the past-the-end iterator, right? Therefore, list.end() is an rvalue, right? the -- operator-function overloaded for list iterator takes a non-const reference, right? ...
0
votes
3answers
38 views

Return lvalue from function in Python?

I tried to write a function which can return a reference of an element for assginment, the sample code looks like this (Python3) : row_a = ["rowname","items1","items2"] def rowname(row): return ...
0
votes
0answers
32 views

Dynamic construction of lval variable for textread

I have a data file I am reading in with fieldnum fields of format format separated by commas (and rownum rows). When fieldnum is small (say 5) I can write out the lval columns explicitly [t, val1, ...
2
votes
4answers
56 views

Lvalue required

I have some problem regarding the following code : #include<stdio.h> void main() { int a=6,b=2,g; a>b?g=a:g=b; } this is executing properly without any error. But if seen properly, this ...
5
votes
4answers
284 views

Why is this valid in C++ but not in C?

test.(c/cpp) #include <stdio.h> int main(int argc, char** argv) { int a = 0, b = 0; printf("a = %d, b = %d\n", a, b); b = (++a)--; printf("a = %d, b = %d\n", a, b); return 0; } If ...
1
vote
1answer
140 views

Writing to a 2D Array via Pointer Notation

I'm having trouble understanding why incrementing the pointers in pnArryCpy below is incorrect. I figured out how to copy the array using pointer notation a different way, but I need to understand ...
0
votes
2answers
212 views

“non-const lvalue reference to type cannot bind” error with reference (Type &) but not with pointer (Type *)

I am getting this error "Non-const lvalue to type 'Cell' cannot bind to a temporary of type 'Cell *' with this code : class RegionHolder { public: RegionHolder(Region& ...
1
vote
2answers
118 views

Assigning a pointer to a struct to a variable

I'm having trouble using the pointer returned by the make_employee function out in the main program. // I have the following code in a separate .c file: struct Employee; struct Employee* ...
5
votes
3answers
222 views

Pass lvalue to rvalue

I made a small 'blocking queue' class. It irritates me that I have created redundant code for values passed into the enqueue member function. Here are the two functions that do the same exact thing ...
3
votes
1answer
85 views

Which of these five statements about lvalues is true? [closed]

I'm doing the following puzzle. Mayby someone could check if I'm choosing the right answer. Have a look. Which one of the following is a true statement about an lvalue? 1 An lvalue is the result of ...
2
votes
2answers
221 views

C++11 - Return rvalue passed into a function by lvalue?

In C++11, it is common practice to pass an lvalue into a function by reference. int& f(int& a){ return a; } int main(void){ auto a = 1; auto b = f(a); return 0; } However, ...
-1
votes
2answers
121 views

Functions returning pointers to local static/global variables as lvalues in C

I was wondering if functions returning pointers to local static/global variables could be used as lvalues in C similarly to C++ so I tried it out and seems like this is possible. Take for example the ...
0
votes
1answer
36 views

error when using this in c++

class Tower { int index;//index of the tower; nodeStack<int> t; int size;//number of disks in the tower; public: Tower(int in); void moveTopTo(Tower&); void move(int size,Tower& ...
0
votes
2answers
95 views

How lvalue can be converted as rvalue

int x = 8; int y = x ; Here how a lvalue can be act as rvalue ? I know this is a silly question , but i just want to make my concepts clear on rvalue and lvalue .
2
votes
3answers
171 views

Anyone explain left value and right value in Assembly language level?

I think everyone here knows that --i is a left value expression while i-- is a right value expression. But I read the Assembly code of the two expression and find out that they are compiled to the ...
0
votes
1answer
72 views

c++: function lvalue or rvalue

I just started learning about rvalue references in c++11 by reading this page, but I got stuck into the very first page. Here is the code I took from that page. int& foo(); foo() = 42; // ...
0
votes
5answers
140 views

Return values in c++03 vs 11 [closed]

I have spend a few hours about rvalue s and lvalue. Here is what I understand int main() { //..... Foo foo = Bar1(); foo = Bar2(); //...... } Foo Bar1() { //Do something including create ...
1
vote
0answers
61 views

Why is a hard-coded string constant an lvalue? [duplicate]

Possible Duplicate: Why are string literals l-value while all other literals are r-value? In Can someone please explain move semantics to me? appears the following code snippet and comment: ...
0
votes
4answers
102 views

“lvalue required” error when trying to increment array [duplicate]

Possible Duplicate: Is array name a pointer in C? Suppose I have a char array say arr and arr will represent the address of first element so arr++ should be perfectly legal then why ...
1
vote
1answer
205 views

Eigen library: return a matrix block in a function as lvalue

I am trying to return a block of a matrix as an lvalue of a function. Let's say my function looks like this: Block<Derived> getBlock(MatrixXd & m, int i, int j, int row, int column) { ...
-3
votes
2answers
190 views

What does “lvalue required” mean in a C compiler error? [closed]

#include<stdio.h> //line 1 #include<conio.h> //line 2 void main() //line 3 { //line 4 int a=6,g=7,b=3; //line 5 clrscr(); //line 6 ...
4
votes
2answers
149 views

Of what kind of lvalues can the address not be taken?

In this conference, Scott Meyers starts by saying "lvalues are generally expressions you can take the address of". I am stressing the word generally: what is an lvalue that you cannot take the address ...
3
votes
2answers
62 views

Is it legal to take the address of a const lvalue reference?

#include <iostream> int foo() { return 0; } int main() { const int& a = foo(); std::cout << &a << std::endl; } In this code, a binds to a rvalue. Is it legal to take ...
0
votes
2answers
274 views

why lvalue required as increment operand error?

Why lvalue required as increment operand Error In a=b+(++c++); ? Just Wanted to assign 'b+(c+1)' to 'a' and Increment 'C' by 2 at the same time. I'M A Beginner Just Wanted A Clarification About ...
0
votes
1answer
118 views

How to assign value to a memory address calculated by pointer arithmetic?

I need to create a completely generic linked list that can contain any type of data specified by an enum... A node of the list has the structure: __________________ |_____|_____|_____| The ...
-1
votes
5answers
492 views

Difference between int *x[] and int (*x)[]?

My teacher asked me to find out the difference.Can anyone help me with this? Actually I know first part of is array of pointer but what the second part means.Both are not same because I tried a code ...
1
vote
2answers
70 views

Invalid Lvalue, pointer to function also, whats the use of this? Its much simpler to call the function

So I'm practicing pointers to functions, and tried out making this simple program, here's a snippet of it. It still gives me an error "invalid lvalue" when it comes to assigning the address. funcptr = ...
5
votes
3answers
114 views

rvalue definition is objects that cannot be assigned values, but why are literals lvalues?

So i'm reviewing in advanced our upcoming topics and I've come accross lvalues and rvalues, although the definition confuses me. Why is a literal an lvalue? "rvalue refers to a data value that is ...
0
votes
1answer
139 views

Octave vectorize strsplit return value into separate variables

I have a file with a list of records which I parse one line at a time. Each record is newline delimited and each value is space delimited. This isn't the real example, but has a similar structure. ...
1
vote
3answers
123 views

lvalue required on incrementing a void pointer even after proper casting

I am implementing memset() method. Below is the code snippet: void my_memset(void* ptr, int n, size_t size) { unsigned int i; for( i = 0; i < size; ++i, ++(char*)ptr ) ...
0
votes
5answers
156 views

Any way to pass an rvalue/temp object to function that expects a non-cost reference?

I understand that c++ only allows rvalues or temp objects to bind to const-references. (Or something close to that...) For example, assuming I have the functions doStuff(SomeValue & input) and ...
2
votes
4answers
179 views

Is it possible something like lvalue of perl or setf of lisp in python?

In lisp you can say: (setf (aref a 1) 5) In perl you can say: substr( $string, $start, $stop ) =~ s/a/b/g Is it possible something like this in python? I mean is it possible to use function ...
0
votes
3answers
177 views

L-Value required? C programming bit pattern

void InsertA(SET *A,int elem) { if( isMember(*A,elem) == false) { *A = *A || 1<<elem;; /*it says its in this row*/ } } /*Error: Lvalue required in Function InsertA any thoughts ...

1 2 3