C Program to find exponent Power Series !!

Program : A program to evaluate the power series [crayon-62bec9f48cd78682160074/] It uses if......else to test the accuracy. The power series contains the recurrence relationship of the type [crayon-62bec9f48cd82049629786/] 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-62bec9f48cd85540769256/] C Program for Exponent Series : [crayon-62bec9f48cd88600603439/] Output : [crayon-62bec9f48cd8b993354987/]

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-62bec9f48d4f9499175468/] Write a C program that reads the customer number and power consumed and prints the amount to be paid by the customer. [crayon-62bec9f48d500678417447/] Output : [crayon-62bec9f48d504166607528/]

C Program to Demonstrates binary expressions using floating-point arithmetic

Program : C Program to demonstrates binary expressions using floating-point arithmetic [crayon-62bec9f48d8ac745550948/] Output : [crayon-62bec9f48d8b3670659762/] Floating Pointer Can perform following Operations : Addition Subtraction Division Multiplication Note : Floating Point Data Type Can't Perform Modulus Operation [crayon-62bec9f48d8b6237510811/] Output : [crayon-62bec9f48d8b9478346817/]

C Program to Calculate Area and Circumference of circle

C Program to find area and circumference of circle [crayon-62bec9f48fa27117598640/] Output : [crayon-62bec9f48fa2e867613983/] 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-62bec9f48fa31225280529/] and [crayon-62bec9f48fa34226495320/] 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-62bec9f48fa36779652112/] Download C Program : [box style="download"]Download Area Of Circle Program | Right Click and Save As[/box]