Basic C program

Write a program for Calculating of simple interest.

#include<stdio.h> void main() { //Programwithharsh// int p,n; float r,si; printf("\n enter the value of principle = ",p); scanf("%d",&p); printf("\n enter the value of n = ",n); scanf(&…

That is All