Site icon T4Tutorials.com

C++ Program Inline Function to display the reverse of a number

C++ Program Inline Function to display the reverse of a number

Write a C++ Program to display the reverse of a number using the Inline function.

The inline function inline int T4Tutorials::show() and inline int T4Tutorials::in() helps to increase the execution time of a program. The programmer can make a request to the compiler to make the inline function as inline int T4Tutorials::show() and inline int T4Tutorials::in().

Making inline means that compiler can replace the function definitions of inline int T4Tutorials::show()  and inline int T4Tutorials::in() with the place where this function is called R.in(); and R.show();.
The compiler replaces the definition of inline functions at compile time instead of referring function definition at runtime.

#include<iostream>
using namespace std;
class T4Tutorials
{
	private:
		int n,i;
		public:
	    int in();
		int show();
};
	inline int T4Tutorials::in()
		{
			cout<<"Enter value to Display the number in reverse: ";
			cin>>n;
		}
		inline int T4Tutorials::show()
		{
			cout<<"The reverse of the Entered Number: ";
			for(i=n;n>0;n=n/10)
			{
				cout<<n%10;
			}
		}
int main()
{
	T4Tutorials R;
	R.in();
    R.show();
}

 

 

Exit mobile version