Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What do you mean by inline function?

Answers were Sorted based on User's Feedback



What do you mean by inline function?..

Answer / subhashish sen

The inline function is a special function which is basically
used for small function body.If a function with large body
is defined as inline then it would be treated as a normal
function.

The advantage is that the code gets inserted at the place of
function call so it will reduce the time taken for control
to go back and forth from function call to function
definition.So as a result it will make execution faster.

Note: When we declare a function as inline we merely send a
request to the compiler,so its up to the compiler whether
our request is is accepted or not.So its better to define an
inline function for a small function.

Is This Answer Correct ?    26 Yes 4 No

What do you mean by inline function?..

Answer / prakash bora

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.

Is This Answer Correct ?    6 Yes 2 No

What do you mean by inline function?..

Answer / p suresh kumar

The __inline keyword tells the compiler to substitute the
code within the function definition for every instance of a
function call.
However, substitution occurs only at the compiler’s
discretion.
For example, the compiler does not inline a function if
its address is taken or if it is too large to inline.

Is This Answer Correct ?    10 Yes 8 No

What do you mean by inline function?..

Answer / ajay

body of a function is simply coded in a single line.these
are easily compiled

Is This Answer Correct ?    5 Yes 4 No

What do you mean by inline function?..

Answer / bujji

body of a function is simply coded in a single line.these
are easily compiled.

Is This Answer Correct ?    5 Yes 7 No

What do you mean by inline function?..

Answer / poornima.r

the c++ provides a mechanism called inline function.when a function is declared as inline function,the complier copies the code of the function in the calling function

Is This Answer Correct ?    1 Yes 8 No

Post New Answer

More OOPS Interview Questions

What is encapsulation with real life example?

0 Answers  


how does a main() in C++ is different from main() in C?

7 Answers  


You attempt to query the data base with this command: SELECT name, salary FROM employee WHERE salary=(SELECT salary FROM employee WHERE last name='Wagner' OR dept no=233) Choose most appropriate option from the following: 1)Sub-queries are not allowed in the where clause. 2)a multiple row sub-query used with a single row comparison operator. 3)a single row query is used with a multiple row comparison operator.

10 Answers   Zycus Infotech,


define oops with class and object

5 Answers   HCL, Tech Mahindra,


What type of loop is a for loop?

0 Answers  


what is difference between class template and template class?

0 Answers  


What is meant by multiple inheritance?

0 Answers  


What is virtual function?where and when is it used?

2 Answers   Sitel,


what does exactly the linker do?

1 Answers  


i am getting an of the type can not convert int to int *. to overcome this problem what we should do?

0 Answers  


What is polymorphism? Explain with an example.

48 Answers  


Can destructor be overloaded?

0 Answers  


Categories