aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_CONTINUE.c
blob: e90790877a6144bc8b48caed735e565488b9ec01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
int cont(int a, int b)
{
    int c = 0;
    while(a < b)
    {
	++a;
	if(a < b/2)
	{
	    continue;
	}
	else
	{
	    c += 2;
	}
    }

    return c;
}