C++ program to print the hollow square or rectangle star pattern using inline function.

Write a C++ program to print the hollow square or rectangle star pattern using the inline function.

C++ program to print the hollow square or rectangle star pattern

The inline function 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::in().

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