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

Details
Written by: sk.shahida
Category: C Programs
  • Basic C Programs-2
#include<stdio.h>
#include<conio.h>
void main()
{
    int p,n,r,si;
    clrscr();
    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);
    getch();
}

 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 Area of a Triangle
  • C Program to Simulate PRIORITY CPU Scheduling Algorithm
  • C Program to Reverse Elements in Array
  • C Program to Sort an Array using SELECTION SORT
  • C Program to Find Prime Factors of a Given Positive Number
  • C Program to find Area of a Circle
  • C Program for Insertion Sort
  • Bit Stuffing Program in C
  • C Program for Sum of Squares of Numbers from 1 to n
  • Implementation of Queue using Array in C
  • C Program to Implement SJF CPU Scheduling Algorithm
  • C Program for Floyd Triangle
  • C Program for MERGING of Two Arrays with out using Third Array
  • C Program to Find Length of a String Using STRLEN()
  • Compute Factorial of Large Numbers using C
  • Privacy Policy
  • Cookie Policy
© programming9.com 2025
Back to top