I have a 2D Array C[100][10],I want to split it column by column and insert in 1D Array like below :
C[100][10] split to C[0:100][0] , C[0:100][1] , ... , C[0:100][10]
and the insert splited arrays to 1D array like : A[100] =C[0:100][0]
I can do all of that with for-loops but take long time and time is critical for my project. is there any way to solve this problem excluding for-loop
forinfor. Does this really spend lots of time?