Latest C Aptitude Question SOLUTION: what is printed when the following program is compiled and executed? int func (int x) { if (x<=0) return(1); return func(x -1) +x; } main() { printf("%d\n",func(5)); }