aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/for.c
blob: 1f6d104dc72cae22a9594a760caf0990da62b8a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int main()
{
    int x, y, z;

    y = 0;
    for(x = 0; x < 50; x++) {
	y = y + 1;
    }

    z = y + x - 6;
    return z;
}