إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'&' 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
}