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

    return acc + c;
}