✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int sum (int a, int a1, int a2, int a3, int a4 = 2)
{return a + a1 + a2 + a3 + a4;}
викликати в функції main наступним чином
int main ()
{
int z = 1, b = 1, c = 1, d = 1, e = 1;
sum (z, b, c, d, e);
....
}
(C++)