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 Sort List of Strings
  • C Program to Implement Single Linked List Operations
  • C Program to Find Reverse of a Number using Recursion
  • C Program to Calculate NCR
  • C Program to Find Address Locations of Variables
  • C Program to Find Factorial of a Number using While Loop
  • C Program to Find Sum of N Natural Numbers
  • C Program Example for Call By Reference
  • C Program to Evaluate POSTFIX Expression Using Stack
  • FCFS CPU Scheduling Algorithm Simulation Using C
  • C Program to Print ASCII values of Characters
  • C Program to CONCATENATE Two Strings using strcat()
  • C Program to Simulate PRIORITY CPU Scheduling Algorithm
  • C Program to Print Addresses of Variables
  • C Program for Sum of Squares of Numbers from 1 to n
  • Privacy Policy
  • Cookie Policy
© programming9.com 2025
Back to top