What do you mean by inline function?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
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 |
what is different between oops and c++
what is use to destroy an object? illustrate.
Explain the advantages of inheritance.
What is constructor overloading in oop?
Why is oop better than procedural?
Precompilation ?
What is friend function?
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
tel me oops defination in single line
what about you? wahat is your object? introduce your self?
1 Answers Ajmal Perfumes, TCS,
i ahve v low % in 12th n BSC which is aroun 50 coz science was imposed on me......nw m doin MCA n my aggregate in above 74%,what shud i say if asked about low previous percentage??????
Write 7 differences between "Public" function and "Private" function?