Latest C Aptitude Question SOLUTION: Find the output for the following C program fn f(x) { if(x<=0) return; else f(x-1)+x; }