Technicalsymposium.com-Free Email Alerts


Enter Your Email :

Important Note:Login & Check Your Email Inbox and Activate Confirmation Link

Subscribe & Get All Fresher Jobs Information & Study Materials PDF and Projects- Free Download

C Programming Books PDF


C Aptitude Question Papers


Datastructure Programming in C



C Programming & Tech Interview Materials PDF- Free Download

C Program for Exponential value.

void main()

{

double term=1,expo=1;

float x;

int i;

clrscr();

printf("Enter the exp value of x: ");

scanf("%f",&x);

for(i=1;term>=0.00001;i++)

{

term *= x/i;

expo+=term;

}

printf("\Our Exp = %f %f\n",x,expo);

getch();

}

Download All C Programming & Study Materials PDF