aboutsummaryrefslogtreecommitdiff
path: root/c-asm/main.c
blob: 56b9bc5cbf578107f348194e66fd1b69fcd13ab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

int sum(int a, int b);

int main() {
    for (int i = 0; i < 10; ++i) {
        printf("SUM of 5+%d is %d\n", i, sum(5, i));
    }

    return 0;
}