programming9
  • Flowcharts
  • Programs
      • Back
      • C Programs
      • C++ Programs
      • Java Programs
      • Python Codes
      • HTML Codes
      • Java Script Codes
      • SQL Codes
  • Tutorials
      • Back
      • Java Tutorials
      • Competitive Programming
      • Python Tutorials
      • C Programming
  • Blog
  • Login

C Program to Find Simple Interest

Written by: sk.shahida
  • Basic C Programs-2
#include<stdio.h>
#include<conio.h>
void main()
{
    int p,n,r,si;
    printf("Enter Principle, Rate of interest & Time :");
    scanf("%d%d%d",&p,&r,&n);
    si=(p*r*n)/100;
    printf("Simple Interest is :%d",si);    
}

 OUTPUT:

Enter Principle,Rate of interest & Time :1000
10
24
Simple Interest is :2400
Previous article: C Program to Find Area and Circumference of a circle. Prev Next article: C Program for String Concatenation without using strcat() Next
  • C Program to Find Simple Interest
  • C Program to find Size of Integer
  • C Program to Simulate PRIORITY CPU Scheduling Algorithm
  • C Program for Fibonacci Series Using for Loop
  • C Program to Find Roots of a Quadratic Equation
  • Swapping of Two Numbers Using Call By Reference in C
  • C Program for Sum of Digits of a Number using Recursion
  • C Program for Fibonacci Series using While Loop
  • C Program Example to Initialize Structure Variable
  • C Program to Find Area of a Square
  • C Program to Swap Two Numbers without using Third Variable
  • Compute Factorial of Large Numbers using C
  • C Program for Insertion Sort
  • C Program to Check the Leap Year
  • Decimal to Binary Conversion Using C
  • Privacy Policy
  • Cookie Policy
© programming9.com 2025
Back to top