aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_POINTERADD_driver.c
blob: 44ea6d7a6c5bdff585f113d5ce9ad3ae10bedec9 (plain)
1
2
3
4
5
6
7
int pointeradd(int *a);

int main()
{
    int x[5] = {1, 2, 3, 4, 5};
    return !( 3 == pointeradd(x) );
}