aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_MULTARR1.c
blob: e3d11ee83c5e3547518f81b22acd6a5feae8d4ed (plain)
1
2
3
4
5
6
7
8
9
char multiarr1(char a, char b, char c, char d, char e)
{
    char x[2][3] = {
	{a, b,},
	{c, d, e},
    };

    return x[1][2];
}