#include math.h
int main()
{
float x,e=0.0;
int i,j,f=1;
printf("Enter the value of x");
scanf("%f",&x);
for(i=0;i< 7;i++)
{
for(j=i;j>1;j--)
{
f=f*j;
}
e+=pow(x,i)/f;
f=1;
}
printf("%f",e);
getch();
}
This blog will cover all important aspects of 'C' 'C++', 'Data Structures in C' and other Technical stuffs. In this blog you will find good C Interview Questions Answers. I will be posting both multiple choice and subjective type C interview questions and answers. Tutorials will be posted from time to time that will focus on problem solving.