//C program to find Simple interest
#include<stdio.h>
int main()
{
//Input values
float P=1,R=1,T=1;
//Calaulate Simple Interest
float SI=(P*T*R)/100;
//Print Simple Interest
printf("Simple Interest =%f\n",SI);
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: