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

What is linear search?

0 Answers  


What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

0 Answers   Wilco,


main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?

10 Answers   Ramco,


What is header file definition?

0 Answers  


What is the advantage of an array over individual variables?

0 Answers  


The difference between printf and fprintf is ?

0 Answers   Baan Infotech,


21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }

3 Answers  


f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?

7 Answers   Hughes,


What is exit() function?

0 Answers  


Explain what are its uses in c programming?

0 Answers  


write a c program to accept a given integer value and print its value in words

4 Answers   Vernalis, Vernalis Systems,


for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float

1 Answers  


Categories