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

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

    z = y + x - 5;

    return z;
}