Computer Science, asked by ichuniha2382, 1 year ago

How do we access elements from the two-dimensional array in C#?

Answers

Answered by khushi769
0
Answer:-Now to access the element just add the offset in array base address and dereference it. Note: Array index always start with 0, so 2nd means third element. Get the element => *( (int *)aiData + offset ); See: Pointer arithmatic in C.
Similar questions