C++ Program to print a pattern of right angle triangle using the inline function
Write a program in C++ to print a pattern of right angle triangle with a number which will repeat a number in the row by using the inline function.
The inline function inline T4Tutorials::T4Tutorials_Function()
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 T4Tutorials::T4Tutorials_Function()
.
Making inline means that compiler can replace the function definitions of inline T4Tutorials::T4Tutorials_Function()
with the place where this function is called a.T4Tutorials_Function();
.
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 | #include<iostream> using namespace std; class T4Tutorials { protected : int i,j,n,r; public : T4Tutorials_Function(); }; inline T4Tutorials::T4Tutorials_Function() { cout<<"Enter no of rows : "; cin>>n; for(i=1 ; i<=n ; i++) { for(j=1 ; j<=i ; j++) { cout<<i; } cout<<endl; } } int main() { T4Tutorials a; a.T4Tutorials_Function(); } |
Output