DK
Size: a a a
DK
ПК
DS
DK
ПК
if (proxy)
?LA
DS
if (proxy)
?DK
T
nullptr
.ПК
int* ptr = (int*)1;Чо будет?
if (ptr) { *ptr = 1; }
DS
DS
T
int* ptr = (int*)1;Чо будет?
if (ptr) { *ptr = 1; }
int* ptr;
*ptr = 0;
ПК
int* get_int_ptr() { int i; return &i; }
int* ptr = get_int_ptr();
if (ptr) { cout << *ptr; }
ПК
DS
ПК
DS
T
ПК