What do you mean by inline function?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the data types in oop?

592


Can bst contain duplicates?

660


How long to learn object oriented programming?

549


Why is oop useful?

587


What is the full form of oops?

597






What does and I oop mean in text?

607


What does and I oop mean?

604


What is polymorphism give a real life example?

548


What is the point of oop?

640


write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory

2741


What are the 3 principles of oop?

600


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2153


What is oops and why we use oops?

560


Where is pseudocode used?

553


What is meant by oops concept?

598