aboutsummaryrefslogtreecommitdiffstats
path: root/test/loop.c
blob: 52e4fe99f5c67d0cfae14b67f0b4f6080c5a7632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int main() {
    int max = 5;
    int acc = 0;
    int b = 1;
    int c = 2;
    
    for (int i = 0; i < max; i = i + b) {
        acc += i;
    }

    return acc + c;
}