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 Implement Call By Value using Functions
  • C Program for Floyd Triangle
  • Bubble Sort in C
  • C Program to Find Prime Factors of a Given Positive Number
  • Check a Character is Vowel or not Using C
  • C Program to Check the Leap Year
  • C program for Fibonacci Series using do-while Loop
  • C Program to Design Lexical Analyzer
  • C Program to find Size of Integer
  • Binary Search Program in C using Recursive and Non-Recursive Methods
  • C Program to Find Address locations of Array Elements Using Pointers
  • C Program to Simulate PRIORITY CPU Scheduling Algorithm
  • C Program to Print Hello World
  • C Program to CONCATENATE Two Strings using strcat()
  • C Program to Find Sum of Odd Integers
  • Privacy Policy
  • Cookie Policy
© programming9.com 2026
Back to top