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 Design Lexical Analyzer
  • C Program to Implement SJF CPU Scheduling Algorithm
  • Swapping of Two Numbers Using Call By Reference in C
  • C Program to Reverse Elements in Array
  • C Program to Delete Characters from Given String
  • C Program to Print ASCII values of Characters
  • C Program for Call By Reference
  • C Program for String Concatenation without using strcat()
  • GCD of Two Numbers Without using LCM in C
  • C Program to Find Address locations of Array Elements Using Pointers
  • C Program to Perform Operations on Doubly Linked List
  • C Program to Convert Temperature from Degree Centigrade to Fahrenheit
  • C Program to Find String Length with out using Function
  • C Program Example to Initialize Structure Variable
  • C Program for Swapping of Two Numbers Without Using Third Variable
  • Privacy Policy
  • Cookie Policy
© programming9.com 2025
Back to top