Program to calculate simple interest by using function (no return, no argument) Post author:admin Post published:July 5, 2020 Post category:c++ Post comments:0 Comments #include #include main() { viod sint(); sint(); } viod sint() { int p,r,t,si; clrscr(); cout<>p; cout<>r; cout<>t; si=(((p*r*t))/100); cout<<"n Calculate the simple interst is :"<<si; getch(); } You Might Also Like Program to check the imortance of virtual function or late binding for the implementation of the inheritance to get required output according to the given access(by using virtual). July 5, 2020 Program to implement the concept of “Behaviour of constructor and destructor under inheritance”. July 5, 2020 Program to implement the concept of abstract base class with all its functions as pure virtual functions. July 5, 2020 Leave a Reply Cancel replyCommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) Save my name, email, and website in this browser for the next time I comment.
Program to check the imortance of virtual function or late binding for the implementation of the inheritance to get required output according to the given access(by using virtual). July 5, 2020
Program to implement the concept of “Behaviour of constructor and destructor under inheritance”. July 5, 2020
Program to implement the concept of abstract base class with all its functions as pure virtual functions. July 5, 2020