What would be the output of the following program? #include<stdio.h> #include<conio.h> #include<math.h> int main() { int f=1,l,i,x=4,y=6; float jam; jam=x; for(i=2;i<=y;i+=2) { f=1; for(l=1;l<=i;l++) f=f*l; jam=jam+pow(x,i)/f; } printf(result is %f,jam); getch(); }
Reveal answer
Fill a bubble to check yourself