C++ Programming Question: Download C++ Programming PDF

What do you mean by inline function?

Tweet Share WhatsApp

Answer:

The idea behind inline functions is to insert the code of a called function at the point where the function is called. If done carefully, this can improve the application's performance in exchange for increased compile time and possibly (but not always) an increase in the size of the generated binary executables.

Download C++ Programming PDF Read All 120 C++ Programming Questions
Previous QuestionNext Question
How do you write a function that can reverse a linked-list?Write a program that ask for user input from 5 to 9 then calculate the average