Answers for "length of 2d array c"

C++
10

length of 2d array c++

int rows = sizeof(arr) / sizeof(arr[0]); // returns rows
int col = sizeof(arr[0]) / sizeof(int); // returns col
Posted by: Guest on May-23-2020
1

c 2d array dimensions

int array[2][5];
int rows;
int cols;
cols = sizeof(array[0]) / sizeof(int);
rows = (sizeof(array) / sizeof(int))/cols;
printf("rows: %d\n",rows);
printf("cols: %d",cols);
Posted by: Guest on February-06-2022

Browse Popular Code Answers by Language