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.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #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(); } |