Get Affordable VMs - excellent virtual server hosting


browse words by letter
a b c d e f g h i j k l m n o p q r s t u v w x y z

lvalue

lvalue


  1  definition  found 
 
  From  The  Free  On-line  Dictionary  of  Computing  (13  Mar  01)  [foldoc]: 
 
  lvalue 
 
    A  reference  to  a  location,  an  expression  which 
  can  appear  as  the  destination  of  an  {assignment}  operator 
  indicating  where  a  value  should  be  stored.  For  example,  a 
  variable  or  an  array  element  are  lvalues  but  the  constant  42 
  and  the  expression  i+1  are  not  A  constant  string  may  or  may 
  not  be  an  lvalue  (it  usually  is  in  {C}). 
 
  (1995-04-28)