saving . . . saved Assignment has been deleted. Assignment has been hidden .
Assignment
Title
Question
Assignment program for calculating simple interest

#include <stdio.h>
int main()
{
    float principle, time, rate, SI;
    printf("Enter principle amount: ");
    scanf("%f", &principle);
    printf("Enter time: ");
    scanf("%f", &time);
    printf("Enter rate: ");
    scanf("%f", &rate);
    /* Calculate simple interest */
    SI = (principle * time * rate) / 100;
    printf("Simple Interest = %f", SI);
    return 0;
}


Haripriya,ECE department
IRTT

C-and-Cpp Tokens 01-02 min 10-20 sec 06-12-21, 6:02 p.m. Harisj

Answers:

Assignments are only for self-assessment. If you have any specific question related to this tutorial please post here.
10-01-22, 1:15 p.m. hbammkanti


Log-in to answer to this question.