somma #include int somma(int x, int y) { return x + y; } int main() { int bisomma = 2*somma(13, 45); printf("somma %d", bisomma / 2); return 0; }