Computer Science, asked by 204047srdcwit, 2 months ago

one
programs
ed White a program to store n elements within any
dimensional array ý display it using Pointer​

Answers

Answered by Aryansingh001
1

Answer:

int arr3d[3][2][4] = {

       {{1, 2, 3, 4}, {5, 6, 7, 8}},

       {{9, 10, 11, 12}, {13, 14, 15, 16}},

       {{17, 18, 19, 20}, {21, 22, 23, 24}}

   };

92 &vector[-2] vector - 2 &pv[-2] pv - 2

100 vector vector+0 &pv[0] pv

100 &vector[0] vector+0 &pv[0] pv

104 &vector[1] vector + 1 &pv[1] pv + 1

140 &vector[10] vector + 10 &pv[10] pv + 10

Explanation:

https://www.oreilly.com/library/view/understanding-and-using/9781449344535/figs/uucp_0401.png   your solution

Similar questions