Posted in

Sum of n number of odd natural numbers by using Inline function C++

Let’s see the C++ program of  Sum of n number of odd natural numbers by using the inline function.

The inline function Inline T4Tutorials_sum::odd() 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_sum::odd().

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

Output

Please enter the value to print the Odd Number.

4

The output is

1

3

5

7

The sum of Odd Numbers is.16

 CEO @ T4Tutorials.com
I welcome to all of you if you want to discuss about any topic. Researchers, teachers and students are allowed to use the content for non commercial offline purpose. Further, You must use the reference of the website, if you want to use the partial content for research purpose.

Leave a Reply

Contents Copyrights Reserved By T4Tutorials