0
How I can assign elements of tow dimensional array to one dimensional array?
If I have a two dimensional array with size 3*3 and I need to assign elements to one dimensional array with size 9 How I can do that?
3 Respuestas
0
By looping over every element in those array and adding them to that new array. You can use brute force with a double nested loop.
0
You know how to access 2d elements!
You know how to assign 1d elements!
Find out your own way..
a_1d[index1] = a_2d[row][column];
Hope these helps...
You can use memcpy() function also to just coping....
https://stackoverflow.com/questions/19913596/c-2d-array-to-1d-array
http://www.cplusplus.com/forum/general/263317/
0
isnt 3*3
3 dimensional "i am still learning"