Skip to main content

C program to calculate Compound Interest.

C program to calculate Compound Interest

program:2
Write a C program to input principle (amount), time, and rate (P, T, R) and find Compound Interest. How to calculate compound interest in C programming. Logic to calculate compound interest in the C program.
Compound Interest formula

Formula to calculate compound interest annually is given by.

Compound Interest formula (anually)

Where,
P is principle amount
R is the rate and
T is the time span




Comments

Popular posts from this blog

leap year program in java language for btech students in a easy approach.

  Java Program to Find if a given Year is a Leap Year for BTech CSE students. Leap Year contains 366 days, which comes once every four years. Every leap year corresponds to these facts :  A century year is a year ending with 00. A century year is a leap year only if it is divisible by 400. A leap year (except a century year) can be identified if it is exactly divisible by 4. A century year should be divisible by 4 and 100 both. A non-century year should be divisible only by 4. https://ide.geeksforgeeks.org/S3DSLXo19k <<<<<<< check out the program in the compiler for clarity.

write a c program to find a distance when initial velocity ,acceleration and time is given.

 c program is a beginner's program language. If you want to learn c program language click here for notes . I will publish the programs daily check out and practice for a better result, practice makes a man perfect. practice program 1 : write a program to find a distance when initial velocity, acceleration, and time are given.