Posts

Showing posts with the label Simple Interest Formula in C

C Program to Calculate Simple Interest with Output, Simple Interest Program in C Language

Simple Interest is one of the most common mathematical calculations used in banking, finance, education, and accounting systems. In C language, we can easily calculate Simple Interest using arithmetic operators and basic input-output functions. Simple Interest बैंकिंग, finance, education तथा accounting systems में उपयोग होने वाली सबसे सामान्य mathematical calculations में से एक है। C language में arithmetic operators तथा basic input-output functions की सहायता से Simple Interest आसानी से निकाला जा सकता है। Formula of Simple Interest साधारण ब्याज का सूत्र The formula used to calculate Simple Interest is: Simple Interest निकालने के लिए निम्न formula का उपयोग किया जाता है: SI=P*R*T/100 Where: P = Principal Amount मूलधन R = Rate of Interest ब्याज दर T = Time समय SI = Simple Interest साधारण ब्याज Algorithm एल्गोरिथ्म Start the program Declare variables p, r, t, and si Input principal, rate, and time Calculate simple interest using formula Display the result Stop the program C Progra...