aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_WHILEN.c
blob: f7ec5a819d6944d153313c4ee5dc189cfceef7a5 (plain)
1
2
3
4
5
6
7
8
9
 int whilen(int a, int b)
{
    while(a <= b)
    {
	a = a + 1;
    }

    return a;
}