C Program to find exponent Power Series !!

Program : A program to evaluate the power series [crayon-641f8a65cf9b0992973172/] It uses if......else to test the accuracy. The power series contains the recurrence relationship of the type [crayon-641f8a65cf9b7372315947/] If Tn-1 (usually known as previous term) is known, then Tn (known as present term) can be easily found by multiplying the previous term by x/n. Then [crayon-641f8a65cf9ba886402066/] C Program for Exponent Series : [crayon-641f8a65cf9bd362921481/] Output : [crayon-641f8a65cf9c0259242321/]

C program to reads customer number and power consumed and prints amount to be paid

An electric power distribution company charges its domestic consumers as follows [crayon-641f8a65d000c460402013/] Write a C program that reads the customer number and power consumed and prints the amount to be paid by the customer. [crayon-641f8a65d0012559967773/] Output : [crayon-641f8a65d0016811153094/]

C Program to Calculate Area and Circumference of circle

C Program to find area and circumference of circle [crayon-641f8a65d1a2e492529735/] Output : [crayon-641f8a65d1a35742919904/] Explanation of Program : In this program we have to calculate the area and circumference of the circle. We have following 2 formulas for finding circumference and area of circle. [crayon-641f8a65d1a38794173177/] and [crayon-641f8a65d1a3c931243890/] In the above program we have declared the floating point variable PI whose value is defaulted to 3.14.We are accepting the radius from user. [crayon-641f8a65d1a3f992000205/] Download C Program : [box style="download"]Download Area Of Circle Program | Right Click and Save As[/box]