WAP to Calculate simple interest

#include <stdio.h> int main() { float principal, rate, time, interest; // Prompt the user to enter the principal, rate, and time printf("Enter the principal amount: "); scanf("%f", &principal); printf("Enter the…

0 Comments