
Lvalue
UK
/ˈɛlˌvæljuː/
US
/ˈɛlˌvælju/

Translation lvalue into russian
lvalue
NounUK
/ˈɛlˌvæljuː/
US
/ˈɛlˌvælju/
In C programming, an lvalue refers to an object that has an identifiable location in memory.
В программировании на C левое значение относится к объекту, который имеет идентифицируемое местоположение в памяти.
Definitions
lvalue
NounUK
/ˈɛlˌvæljuː/
US
/ˈɛlˌvælju/
An expression that refers to a memory location and allows us to take the address of that location using the '&' operator.
In the statement 'int x = 10;', 'x' is an lvalue because it refers to a memory location where the value 10 is stored.
A variable or object that can appear on the left-hand side of an assignment operator.
In the expression 'a = b + c;', 'a' is an lvalue because it can be assigned a new value.
Idioms and phrases
variable lvalue
In C++, a variable lvalue can be assigned a new value.
переменная lvalue
В C++, переменной lvalue можно присвоить новое значение.
expression lvalue
An expression lvalue can be used on the left side of an assignment.
выражение lvalue
Выражение lvalue может быть использовано на левой стороне присваивания.
object lvalue
The function returns an object lvalue that can be modified.
объект lvalue
Функция возвращает объект lvalue, который можно изменить.
constant lvalue
A constant lvalue cannot be assigned a new value.
константа lvalue
Константе lvalue нельзя присвоить новое значение.
pointer lvalue
The pointer lvalue points to a specific memory location.
указатель lvalue
Указатель lvalue указывает на конкретное место в памяти.