opomba,
Dostop do te strani zahteva pooblastilo. Poskusite se vpisati alispremeniti imenike.
Dostop do te strani zahteva pooblastilo. Poskusite lahko spremeniti imenike.
'&' 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
}