-->

Facebook

Jasper Roberts - Blog

Friday, January 30, 2015

Write a C Program to evaluate algebraic exp x power5 +10 x power 4+8 x power3+4x+2

#include<stdio.h>
#include<math.h>

void main ()
{
           float x,s;
       
           printf("enter the values of x:");
           scanf("%f",&x);

Write a C Program to evaluate algebraic exp (ax+b)/(ax-b)

#include<conio.h>
#include<stdio.h>

void main()
{
         int a,b,x;
         float s;
         clrscr();

         printf("enter the values of a,b,x...");