aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/while.c
blob: caa38b209e75c1dbde7a3cffc03df2d7631ca5ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
int main()
{
    int x = 0;
    int y;

    y = 0;
    while(x < 10)
    {
	y = y + 1;

	x = x + 1;
    }

    return y;
}