Computer Science, asked by soniaditya1245, 4 months ago


Develop programs to demonstrate default arguments, constant arguments
Develop two program to demonstrate use of inline Function.
Develop minimum two programs to perform function overloading
hur name mll nn three subject​

Answers

Answered by aryashikarwar
0

Answer:

hiiiiiiiiiiiiiiiiii hiiiiiiiiiiiiiiiiii

Answered by Anonymous
3

Answer:

Inline function is written like a normal function in the source file but compiles into inline code instead of into a function.

Calling a function generally causes a certain overhead (stacking arguments, jumps, etc…), and thus for very short functions, it may be more efficient to simply insert the code of the function where it is called, instead of performing the process of formally calling a function.

Similar questions