aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_ARRAY1.c
blob: 347dbdb2e7d3f9190632909580c4d44ce6ca5317 (plain)
1
2
3
4
5
int array1(int a, int b, int c, int d, int e, int f)
{
    int x[5] = { a, b, c, d, e, };
    return x[f];
}