Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. Noob

    C How to write a program to find compound interest without using the pow function (in C)?

    Here's my code so far: #include <stdio.h> int main() { float principle, rate, time, CI; scanf("%f", &principle); scan("%f", &time) scanf("%f", &rate); CI = principle * ((1 + rate / 100) * (1 + rate / 100) * (1 + rate / 100)); printf("%.2f\n", CI)...
Back
Top Bottom