View Single Post
  #5 (permalink)  
Old 07-07-2008, 06:50 PM
prabuhello prabuhello is offline
Junior Member
 
Join Date: Jul 2008
Posts: 19
Default

Lvalue(LEFT Value) and RValue(RIGHT Value) are desired through the Assignment Operator(=).
Left Side of the Assienment operator is LValue;It must be one Variable Name.
Right Side of the Assienment operator is RLValue;

Ex:
a = j + 8^90;
a is Lvalue;
j+ 8^90 is RValue;
Reply With Quote