Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Співставте складні операції з покажчиками із їхніми результатами
struct S { public int a; } S s; fixed (S* p = &s) { p++; }
byte* b = stackalloc byte[4]; b[3] = 255;
int[] arr = {1, 2}; fixed (int* p = arr) { p += 2; *p }
void* v; int* i = (int*)v; *i = 10;
int x = 5; int* p = &x; *(p + 1)
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!