+ 1
About array
How to take all elements of multiarray?
4 Answers
+ 1
I know
+ 1
I just say how to take it with loop for
+ 1
For example in sample array it will be :
int arr[9];
for(int c=0; c<9; c++) {
cout<<arr[c];
}
0
C++ or JS
How to take all elements of multiarray?