what is an inline function?

Answers were Sorted based on User's Feedback



what is an inline function?..

Answer / naveen shukla

inline function is basically a language construct which tell
the compiler to have a full function statement in the
program where the function is used

Is This Answer Correct ?    2 Yes 0 No

what is an inline function?..

Answer / srinivasroyal

inline function means where the function call is replaced by
the function defination.(which can be expands in a line).

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More C Interview Questions

how can I convert a string to a number?

1 Answers  


What are the types of i/o functions?

1 Answers  


Why is c known as a mother language?

1 Answers  


Differentiate between Macro and ordinary definition.

1 Answers   Motorola,


is it possible to create your own header files?

1 Answers  


How can I delete a file?

1 Answers  


whether itis a structured language?

1 Answers   Microsoft,


the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function

1 Answers  


i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);

8 Answers   HCL,


Explain how can a program be made to print the line number where an error occurs?

1 Answers  


Explain the use of function toupper() with and example code?

1 Answers  


a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above

1 Answers  


Categories