Let Us C Solution | Chapter 14 Exercise C (f) | How to access 2D Array with Pointers?
Duration: 24:3 Min | Sep 10, 2023
This video discusses solution of Chapter 14: Multidimensional (2d and 3d) Arrays in C programming Exercise C (f).
Attempt the following: Match the following with reference to the following program segment:
int x[3][5] = {
{1,2,3,4,5},
{6,7,8,9,10},
{11,12,13,14,15}
}, *n=&x;