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