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 Write a program to insert details of book and display back on screen with help of pointer access to structure July 5, 2020 Write a program to implement the concept of pointers. July 5, 2020 Program to implement concept of single inheritance 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.
Write a program to insert details of book and display back on screen with help of pointer access to structure July 5, 2020