for arrays you can list the different arrays and what attributes that you give to them.
Arrays whose size can be altered are known as dynamic arrays.
we can call the number that cannot be arranged into 2- row arrays multiple arrays.
A multidimensional array in C or C++ is simply an array of arrays, or an array of an array of arrays, etc. for however many dimensions you want. int a; // not an array int a[10]; // ten int a's int a[10][20]; // twenty int a[10]'s, or 200 int a's int a[10][20][30]; // and so on and so forth...
Yes, it can.
1 x 10 2 x 5
Arrays having more than one dimension is known as multi-dimensional arrays. Multi-dimensional arrays is also known as arrays-of-arrays.
Arrays having more than one dimension is known as multi-dimensional arrays. Multi-dimensional arrays is also known as arrays-of-arrays.
You cannot sort arrays by other arrays; that wouldn't make sense, anyway.
Arrays are reported to be omnivoire.
Arrays of chars are strings. there is a built in librray, that handles string string.h but the data-type is held as arrays of chars. char[10] c="string"; translate to ['s','t','r','i','n','g',\0] Arrays of chars are strings. there is a built in librray, that handles string string.h but the data-type is held as arrays of chars. char[10] c="string"; translate to ['s','t','r','i','n','g',\0]
10 x 5?
for arrays you can list the different arrays and what attributes that you give to them.
Arrays whose size can be altered are known as dynamic arrays.
Arrays can be of following types.
Yes. int main(void){ int a[10]; int i=0; while(i<10 && a[i++]=i); return 0; }
example in C: const int a [] = {10, 20, 40, 80};