aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_LOGAND.c
blob: 6a16f72aeb427a916f06c0d854e08c2648c918ec (plain)
1
2
3
4
5
6
7
8
9
10
11
int logand(int a, int b)
{
    if(4 && 0)
    {
	return a * b;
    }
    else
    {
	return a * a * b;
    }
}