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 */