הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'&' on constant
Remarks
The address-of operator (&) must have an l-value as operand.
Example
The following example generates C2101:
// C2101.cpp
int main()
{
int* ptr = &123; // C2101
}