Easytcs-nqt
What is the output of the following recursive function? int f(int n) { if(n==0) return 0; return n + f(n-1); } called as f(4)

What is the output of the following recursive function? int f(int n) { if(n==0) return 0; return n + f(n-1); } called as f(4)