What will be the output of the following program? #include<stdio.h> #include<conio.h> #include<math.h> int rec(int); int main() {int input(int); int result(int); int x; x=result(1-input(x)+1); printf(result=%d,x); getch(); } int input(int) { int k=5; return k; } int result(int m) { return(pow(m,2)); }
Reveal answer
Fill a bubble to check yourself