CoolInterview.com - World's Largest Collection of Interview Questions
Send Free SMS
 Interview Questions  
 Our Services  


INTERVIEW QUESTIONS LANGUAGES C++ DETAILS
Question :
What do you mean by inline function?



Category C++ Interview Questions
Rating (0.0) By 0 users
Added on 7/19/2006
Views 2329
Rate it!
Answers:

Inline Functions are like Normal functions.When an inline Function is invoked the code of function is inserted instead of jump to code of function.

inline keyword is added to the function definition to make that particular function inline function.

inline keyword is just a request to the compiler.Sometimes Compiler will ignore the request and compile the function as normal function.



About answer is totally right, but here I have mentioned the condition when compiler not convert function into inline

1) If the function is recursive
2) If the function contain static variables
3) If the function contains loop or goto having return statement



 Posted by: deepen mehta    

Contact deepen mehta  Contact deepen mehta

inline() is function, is used for copying the code of called function code in place of function call inside the calling function. but it is restricted only for small functions but not for big function because big function have much code so it takes more time to copy in that function call inside the calling function. why we r using dis fucntion is to avoid frequently calling same function from calling function for a called function we are using inline function bcoz it copies the called function code at first call of d function inside function call.



 Posted by: nagaraju    

Contact nagaraju  Contact nagaraju

inline functions are used to avoid the over head work of compiler.when keyword inline is used before a function the compiler will process it directly instead of moving it to stack of memory.
NOTE:inline functions are used in the functions which has merely 2 or 3 lines.it can't be used for functions involving loop,recursive functions......



 Posted by: Ganesh Moorthy    

Contact Ganesh Moorthy  Contact Ganesh Moorthy

Inline function can be expanded in single Line when it is invoked.



 Posted by: milind    

Contact milind  Contact milind

When you see the keyword INLINE before a function it is called a inline function.
The code of the inline function should be small.
The difference between the inline function and a normal function is known while tracing the program by pressing the F7 button repeatedly.
EXAMPLE TO SHOW INLINE FUNCTION:
#include<iostream.h>
#include<conio.h>
inline void display();
class demo
{
public:
void display()
{
cout<<"kishore reddy";
}
};
void main()
{
clrscr();
demo d;
d.display();
getch();
}

//in above program when you call the d.display() function the control will not jump to that function, the code written in that function will be substituted at the call.




 Posted by: kishore reddy    

Contact kishore reddy  Contact kishore reddy


If you have the better answer, then send it to us. We will display your answer after the approval.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification  Enter the above shown code:*
Inform me about updated answers to this question

   
Related Questions
View Answer
What is virtual class and friend class?
View Answer
What is function overloading and operator overloading?


View Answer
Difference between realloc() and free()?


View Answer
What do you mean by binding of data and functions?


View Answer
What is friend function?


View Answer
What is public, protected & private?


View Answer
What is polymorphism? Explain with an example?


View Answer
What is a class?


View Answer
What is the difference between structures and classes in C++?
View Answer
What is an object?


View Answer

Please Note: We keep on updating better answers to this site. Subscribe to our newsletter to get notified when better answer is posted.

Notify me when better answer is posted!
Email:

View ALL C++ Interview Questions

User Options
Sponsored Links


Copyright ©2003-2010 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions
Page URL: http://www.coolinterview.com/interview/6155/default.asp?cachecommand=bypass


Download Yahoo Messenger | Placement Papers| FREE SMS | ASP .Net Tutorial | Web Hosting | Free SMS | Dedicated Servers | Joke of the Day

1.55