Onaylı Üye
C:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int addNumbers(int a, int b , int c) {
int total = a + b + c;
return total;
int main()
{
int total= addNumbers(10, 20, 30);
int lastTotal = addNumbers(total, total, total);
printf("lastTotal: %d", lastTotal);
getchar();
getchar();
return 0;
}
}
}
}