Site icon T4Tutorials.com

Multiple inheritance C++ program to print the string in reverse order

Write a C++ program to print the string in reverse order using the Multiple inheritances in object-oriented programming.

#include<iostream>
#include<conio.h>
using namespace std;
class T4tutorials
{
	protected:
		string str;
	};
	class T4tutorials2
	{
		protected:
			int i;
	};
		class a : public T4tutorials, public T4tutorials2
		{
			public:
			int call()
			{
	string str="i Love T4Tutorials";
	for(int i=str.length()-1; i>=0; i--)
		cout<<str[i];
}
};
	int main()
	{
		a obj;
		obj.call();
	}

 

Output

I Love T4Tutorials.

slairotut4t evoL I.

Exit mobile version