Write a C++ program to print the string in reverse order using the single inheritance in object-oriented programming.
#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.