Write a recursive function int fib(int n) where fib(0)=0, fib(1)=1, and fib(n) = fib(n-1) + fib(n-2).
int fib(int n)
fib(0)=0
fib(1)=1
fib(n) = fib(n-1) + fib(n-2)
fib(7) = 13 [✓] Recursion stack verified (Time: 0.007s, Memory: 2.1 MB)