Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rdemeter
GitHub Repository: rdemeter/so
Path: blob/master/lab1/intro-02.c
221 views
1
#include <stdio.h>
2
int suma(int a, int b, int c);
3
4
int main() {
5
printf("1 + 2 fac %d\n", suma(1, 2, 0));
6
return 0;
7
}
8
9
int suma(int a, int b, int c) {
10
return a + b + c;
11
}
12
13