Single inheritance C++ program to print the string in reverse order
Write a C++ program to print the string in reverse order using the single inheritance in object-oriented programming.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#include<iostream> #include<conio.h> using namespace std; class T4Tutorials { protected: string str; }; class T4Tutorials2 : public T4Tutorials { public: int call() { string str="I Love T4Tutorials."; for(int
i=str.length()-1; i>=0; i--) cout<<str[i]; } }; int main() { T4Tutorials2 obj; obj.call(); } |
Output
I Love T4Tutorials.
slairotut4t evoL I.