Simple Example Program for Inline Function Using C++ Programming
Inline Function Definition
In various versions of the C and C++ programming languages, an inline function is a function upon which the compiler has been requested to perform inline expansion. In other words, the programmer has requested that the compiler insert the complete body of the function in every place that the function is called, rather than generating code to call the function in the one place it is defined. Compilers are not obligated to respect this request.
For Better Understanding,
Syntax Of Inline Function
inline return_type function_name(arguments...)
{
//function_code
return_value;
}
Program Aim
To write a program to find the multiplication values and the cubic values using the inline function.
Simple Program for Inline Function Algorithm/Steps:
- Step 1: Start the program.
- Step 2: Declare the class.
- Step 3: Declare and define the inline function for multiplication and cube.
- Step 4: Declare the class object and variables.
- Step 5: Read two values.
- Step 6: Call the multiplication and cubic functions using class objects.
- Step 7: Return the values.
- Step 8: Display.
- Step 9: Stop the program.
Inline Function Example Program
#include<iostream.h>
#include<conio.h>
class line {
public:
inline float mul(float x, float y) {
return (x * y);
}
inline float cube(float x) {
return (x * x * x);
}
};
void main() {
line obj;
float val1, val2;
clrscr();
cout << "Enter two values:";
cin >> val1>>val2;
cout << "\nMultiplication value is:" << obj.mul(val1, val2);
cout << "\n\nCube value is :" << obj.cube(val1) << "\t" << obj.cube(val2);
getch();
}
Sample Output
Enter two values: 5 7
Multiplication Value is: 35
Cube Value is: 25 and 343
C++ Function Example Programs
- Simple Example Program for Function In C++
- Simple Example Program for Function Find Smallest Number In C++
- Simple Example Program for Function to Find Factorial In C++
- Simple Example Program for Inline Function Using C++ Programming
- Simple Program for Inline Function without Class Using C++ Programming
- Simple Program for Friend Function Using C++ Programming
- Simple Program for Function Overloading Using C++ Programming
- Simple Program for Static Data and Member Function Using C++ Programming
- Area Of Circle using Friend Function - C++Program
Read More Articles
- Simple Merge Sort Program in C++
- Scope Resolution Operator In C++
- Simple Program for Virtual Functions Using C++ Programming
- Simple Class Example Program For Find Prime Number In C++
- Simple Example Program For Parameterized Constructor In C++
- Define Constructor in Outside Class Example Program In C++
- Simple Program for Function Overloading Using C++ Programming
- Simple Example Program For Copy Constructor In C++
- Simple Program for Single Inheritance Using C++ Programming
- Simple Program for Inline Function without Class Using C++ Programming
- Factorial Using Function Example Program In C++
- Simple Addition ( Add Two Integers ) Example Program
- Simple Example Program For Constructor In C++
- Simple Example Program for Inline Function Using C++ Programming
- Simple Example Program For Constructor Overloading In C++
- Simple Program for Read user Input Using cin
- Factorial Using Loop Example Program In C++
- Simple Stack Program in C++ Programming
- Simple Program for Friend Function Using C++ Programming
- Simple Program for Static Data and Member Function Using C++ Programming
- Simple Program for Unary Operator Overloading Using C++ Programming
- Do While Loop Example Program In C++
- Simple Program for Multiple Inheritance Using C++ Programming
- Simple Copy Constructor Example Program For Find Factorial In C++
- Simple Program for Exception Handling Divide by zero Using C++ Programming