InterviewSolution
Saved Bookmarks
| 1. |
Will the inline function be compiled as the inline function always? Justify your answer. |
|
Answer» An inline function is a request and not a COMMAND. Hence it won't be compiled as an inline function always. Inline-expansion could fail if the inline function CONTAINS loops, the address of an inline function is used, or an inline function is CALLED in a COMPLEX expression. The rules for in-lining are compiler dependent. |
|