pbn/curso/exemplos/05/soma.c

14 lines
180 B
C
Raw Permalink Normal View History

2025-05-22 14:16:05 -03:00
#include <stdio.h>
int soma(int a, int b) {
return a + b;
}
int main() {
int x = 10;
int y = 20;
int r = soma(x, y);
printf("Soma: %d\n", r);
return 0;
}