Write a program in C++ to print Floyd’s Triangle by using the inline function.
The inline function inline T4Tutorials_Pattern_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 inlineinline T4Tutorials_Pattern_Function()
.
Making inline means that compiler can replace the function definitions of inline T4Tutorials_Pattern_Function()
with the place where this function is called object.T4Tutorials_Pattern_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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
#include<iostream> using namespace std; class T4Tutorials_Floyds_Triangle { protected: int i,j,p,q,n; public: int T4Tutorials_Pattern_Function(); }; inline T4Tutorials_Floyds_Triangle::T4Tutorials_Pattern_Function() { cout<<"Pleae enter the no of rows"; cin>>n; for(i=1;i<=n;i++) { if(i%2==0) { p=1; q=0; } else { p=0; q=1; } for(j=1;j<=i;j++) { if(j%2==
0) { cout<<p; } else { cout<<q; } } cout<<endl; } } int main() { T4Tutorials_Floyds_Triangle object; object.T4Tutorials_Pattern_Function(); } |
Output