aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_POINTER1.c
blob: 88d6df2b8c08b30765f890e061b600ebf698a679 (plain)
1
2
3
4
5
6
7
int pointer1(int a)
{
    int *b = &a;

    a += *b;
    return a;
}