Write down the simple interest program using for loop in c

C Programming Tutorial

Here a C program to calculate simple interest using for loop. main ( ) { int p, n, count ; float r, si ; for ( count = 1 ; count <= 3 ; count = count + 1 ) { printf ( “Enter values of p, n, and r ” ) ; scanf ( … Read more