aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_POINTARR.c
blob: bafd4bc237272c059330b6ca5fbf5e54dd7680cd (plain)
1
2
3
4
5
6
7
8
9
10
int pointarr(int *a, int b, int c, int d, int e)
{
    int x[2][2] = {
	{b, c},
	{d, e}
    };
    
    a = &x[0][1];
    return *a;
}