
Is C++ better than C,it’s compatibility & history?
Introductions: C++ is a statically typed, free form, multiparadigm, compiled general-purpose programming language developed by Bjarne stroustrup at Bell Labs in 1979. It is the extension to C…

Program to calculate the simple interest for a given p=4000,t=2 yrs,r=5.5%(I=p*t*r/100)
Problem Analysis: The problem is to calculate the simple interest having the parameters principal(p),time(t), and radius(r).The output is to display the simple interest. The formula to calculate the…