aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_ARRAY0.c
blob: fc70359d294e2091317794a7f877052405ad573e (plain)
1
2
3
4
5
int array0(int a, int b, int c, int d, int e)
{
    int f[5] = { a, b, c, d, e };
    return *f;
}