编辑代码

#include <stdio.h>
int main () {
   int arr[][4]={{1,2},{3,4},{5,6}};
   int x,y;
   for(x=0;x<3;x++)
    {
        for(y=0;y<4;y++)
        {
            printf("%d",arr[x][y]);
        }
        printf("\n");
    }
    return 0;
}