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

    return a;
}