gdb-pratico/mods/04/c/soma.c

14 lines
208 B
C
Raw Normal View History

2025-04-26 11:45:42 -03:00
#include <stdio.h>
int soma(int a, int b) {
int resultado = a + b;
return resultado;
}
int main() {
int x = 10, y = 20;
int z = soma(x, y);
printf("Resultado: %d\n", z);
return 0;
}