aboutsummaryrefslogtreecommitdiffstats
path: root/test/function.c
blob: 0ac0fcda9f75362076304a81a9673bbf507ae3ab (plain)
1
2
3
4
5
6
7
8
9
10
int f(int a, int b) {
    return a * b;
}

int main() {
    int x, y;
    x = 5;
    y = 18;
    return f(x, y);
}