👤

De elaborat o functie care calculeaza suma numerelor reale a,b,c,d

Răspuns :

int suma(int a, int b, int c, int d){
    return a+b+c+d;
}