Pointer to multi dimensional array? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Pointer to multi dimensional array?

1.Is it possible to create a pointer to a multi dimensional? If i use the following code it works: int *someName; someName = new int[x]; reference to array: *(someName + i) but the following does not work: int *someName; someName = new int[x][y]; 2.how would I reference to a multi dimensional array?

15th Jul 2017, 6:08 AM
Slak
Slak - avatar
1 Answer