gdb-pratico/mods/01/demo.c

15 lines
216 B
C
Raw Normal View History

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