✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виконує дана рекурсивна функція?int func (int n1, int n2) { if (n1 > n2) { return 0; } else { return n1 + func(n1 + 1, n2); }}