salam8990 salam8990 09-02-2024 Mathematics contestada For the following recursive function, find f(5): int f(int n) { if (n == 0) return 0; else return n + f(n - 1); }