Find the output of the program or error, if any.
#include<stdio.h>
#include<conio.h>
#include<math.h>
int main()
{
int f=1,l,i,x=4,y=4;
float s;
s=x;
for(i=2;i<=y;i+=2)
{
f=1;
for(l=1;l<=i;l++)
f=f*l;
s=s+pow(x,i)/f;
}
printf("\\n result is %f" ,s);
getch();
}
Reveal answer
Fill a bubble to check yourself