Wisdom Materials
Home
About Us
Our Clients
Careers
Services
Education
Jobs
News
Business
Health
Astrology
Entertainment
RealEstate
Devotion
Contact Us
C Programs
/ Simple Interest C program
Program Name
Write a C Program for Simple Interest C program.
Theory
Program Code
Copy Program Code
#include
int main() { float si,amount ,roi,time; amount=1000; roi=20; time=2; si=(amount *roi*time)/100.00; printf("Simple Interest: %f\n",si); return 0; }
Input
amount=1000; roi=20; time=2;
Output
Simple Interest: 400.000000
Online C Compiler (To copy paste and Run the c program)
Home
Back