“Länge von 2D -Array c” Code-Antworten

Länge von 2D -Array c

int rows = sizeof(arr) / sizeof(arr[0]); // returns rows
int col = sizeof(arr[0]) / sizeof(int); // returns col
0xdevbot

c 2d Array -Abmessungen

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);
Silly Sable

Ähnliche Antworten wie “Länge von 2D -Array c”

Fragen ähnlich wie “Länge von 2D -Array c”

Weitere verwandte Antworten zu “Länge von 2D -Array c” auf C++

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen