aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_MULTARR0.c
blob: c2072fc36e43eb9906ed491fa3393502104ad5cd (plain)
1
2
3
4
5
6
7
8
9
10
int multarr0(int a, int b, int c, int d, int e, int f)
{
    int x[3][2] = {
	{ a, b, },
	{ c, d, },
	{ e, f, },
    };

    return x[1][0];
}