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