//Arrays only declaration int tab[3][4]; //Arrays declaration with initialization int tab[3][4] = { {0,1,2,3}, {4,5,6,7}, {8,9,10,11} };