Answers for "use of pointer in multidimensional array"

0

use of pointer in multidimensional array

arr[i][j] = *(ptr + (i x no_of_cols + j))
Posted by: Guest on July-02-2020
0

use of pointer in multidimensional array

arr[i][j] = baseAddress + [(i x no_of_cols + j) x size_of_data_type]
Posted by: Guest on July-02-2020
-1

use of pointer in multidimensional array

1 2 3 4 5 6 7 8 9 10 11 12
Posted by: Guest on July-02-2020

Code answers related to "use of pointer in multidimensional array"

Browse Popular Code Answers by Language