aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_ARRAY2.c
blob: 9bb22f92a89cdf8a9c5f3582d1334352535d69e7 (plain)
1
2
3
4
5
6
7
8
9
int array2(int a, int b)
{
    int c[50] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
		 11, 12, 13, 14, 15, 16};

    c[39] = a * b;
    c[40] = c[39] + c[2];
    return c[40];
}