Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
int [][] x = new int[3][255];
int [] result = new int[3*255];
for(int i=0,3 > i; ++i)
{
for(int j = 0; 255 > j; += j)
{ //two ways
result[i + 3 * j] = x[i][j]; //row major ordering
//OR
//result[j + 255 * i] = x[i][j]; //cullom major ordering
}
}