Define inline function



Define inline function..

Answer / hrpynux@gmail.com

An inline function is one for which the compiler copies the code from the function definition directly into the code of the calling function rather than creating a separate set of instructions in memory. This eliminates call-linkage overhead and can expose significant optimization opportunities.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

How to implement flags?

2 Answers   Symphony,


What sorting algorithm does c++ use?

1 Answers  


Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---

1 Answers  


What is else if syntax?

1 Answers  


What are the main features of c++?

1 Answers  


To which numbering system can the binary number 1101100100111100 be easily converted to?

1 Answers  


What are the two types of comments?

1 Answers  


How does c++ sort work?

1 Answers  


Write is a binary search tree? Write an algo and tell complexity?

1 Answers   Axtria,


Why is it called c++?

1 Answers  


What do you mean by function and operator overloading in c++?

1 Answers  


What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number

1 Answers  


Categories