aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
blob: cb188a3cdfc35fefaed1f23bc2125b57b394c4ae (plain)
1
2
3
4
5
6
7
8
int main()
{
	int x[4][3] = {
		{ 1, 2 },
		{ 3, 4, 5},
		{ 6, 7, 8 }
	};
}