Solve error: lvalue required as left operand of assignment

In this tutorial you will know about one of the most occurred error in C and C++ programming, i.e. lvalue required as left operand of assignment.

lvalue means left side value. Particularly it is left side value of an assignment operator.

rvalue means right side value. Particularly it is right side value or expression of an assignment operator.

Example:

In above example is lvalue and b + 5 is rvalue.

In C language lvalue appears mainly at four cases as mentioned below:

  1. Left of assignment operator.
  2. Left of member access (dot) operator (for structure and unions).
  3. Right of address-of operator (except for register and bit field lvalue).
  4. As operand to pre/post increment or decrement for integer lvalues including Boolean and enums.

Solve error: lvalue required as left operand of assignment

Now let see some cases where this error occur with code.

Example 1:

When you will try to run above code, you will get following error.

lvalue required as left operand of assignment

Solution: In if condition change assignment operator to comparison operator, as shown below.

Example 2:

Above code will show the error: lvalue required as left operand of assignment operator.

Here problem occurred due to wrong handling of short hand operator (*=) in findFact() function.

Solution: Just by changing the line ans*i=ans to ans*=i we can avoid that error. Here short hand operator expands like this, ans=ans*i. Here left side some variable is there to store result. But in our program ans*i is at left hand side. It’s an expression which produces some result. While using assignment operator we can’t use an expression as lvalue.

The correct code is shown below.

Example 3:

Above code will show the same lvalue required error.

Reason and Solution: Ternary operator produces some result, it never assign values inside operation. It is same as a function which has return type. So there should be something to be assigned but unlike inside operator.

The correct code is given below.

Some Precautions To Avoid This Error

There are no particular precautions for this. Just look into your code where problem occurred, like some above cases and modify the code according to that.

Mostly 90% of this error occurs when we do mistake in comparison and assignment operations. When using pointers also we should careful about this error. And there are some rare reasons like short hand operators and ternary operators like above mentioned. We can easily rectify this error by finding the line number in compiler, where it shows error: lvalue required as left operand of assignment.

Programming Assignment Help on Assigncode.com, that provides homework ecxellence in every technical assignment.

Comment below if you have any queries related to above tutorial.

6 thoughts on “Solve error: lvalue required as left operand of assignment”

  1. #include
    #include
    #include
    using namespace std;
    #define pi 3.14
    int main()
    { float a;
    float r=4.5,h=1.5;
    {

    a=2*pi*r*h=1.5 + 2*pi*pow(r,2);
    }
    cout<<" area="<<a<<endl;
    return 0;
    }
    what's the problem over here

    1. #include
      using namespace std;
      #define pi 3.14
      int main()
      {
      float a,p;
      float r=4.5,h=1.5;
      p=2*pi*r*h;
      a=1.5 + 2*pi*pow(r,2);

      cout<<" area="<<a<<endl;
      cout<<" perimeter="<<p<<endl;
      return 0;
      }

      You can't assign two values at a single place.
      Instead solve them differetly

  2. Hi. I am trying to get a double as a string as efficiently as possible.
    I get that error for the final line on this code.
    double x = 145.6;
    int size = sizeof(x);
    char str[size];
    &str = &x;
    Is there a possible way of getting the string pointing at the same part of the RAM as the double?

Leave a Comment

Your email address will not be published. Required fields are marked *