aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_LOGICAL.c
blob: 0bf68e27af80746af515d9c5a80a77e12f0c1893 (plain)
1
2
3
4
int logical(int a, int b, int c)
{
    return (( (a != b || c == 2) && (3 / c + 2) ) && (5 / 2 + c)) + 32;
}