Q32 What is meaning of error that shows lvalue required?

An lvalue is something that can appear on the left side of an assignment, in other words something that can be assigned. The below expression will give lvalue required error.

100 = value; /* Here we cannot assign anything to a 100, which is not variable */

Leave a Reply

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.