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