הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'&' requires l-value
Remarks
The address-of operator (&) must have an l-value as operand. Address of temporary values cannot be taken.
Example
The following example generates C2102:
// C2102.cpp
int func()
{
return 1;
}
int main()
{
int* ptr = &func(); // C2102
}