c program to find simple interst
Answers
Answered by
0
please mark as brainliest
Attachments:
Answered by
0
C0DE :
#include<stdio.h>
int main(){
int principle=100, rate=4, year=1;
int simpleIntrest = (principle*rate*year) / 100;
printf("The value of simpleIntrest is %d", simpleIntrest);
return 0;
}
0UTPUT
The value of simpleIntrest is 4.
Similar questions