Shri Vasantrao Naik Mahavidhyalaya, Dharni

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Program No.

Aim:- Write a Program in C++ to demonstrate Inline Function.


Program:-
#include <iostream.h>
using namespace std;
inline void displayNum(int num) {
cout << num << endl;
}
int main() {
// first function call
displayNum(5);

// second function call


displayNum(8);

// third function call


displayNum(666);
return 0;
}
---------------------------------------Output-----------------------------------
5
8
666

SHRI VASANTRAO NAIK MAHAVIDHYALAYA, DHARNI Page 1

You might also like