inline function is there in c language?

Answers were Sorted based on User's Feedback



inline function is there in c language? ..

Answer / kathir

No, Inline functions are introduced in C++ to avoid the
problems while using macros.
using inline functions in C++ is as equivalent as defining
a function macro.

Is This Answer Correct ?    4 Yes 0 No

inline function is there in c language? ..

Answer / srinivasroyal

no. there is no such type of function available in C-language.

Is This Answer Correct ?    0 Yes 0 No

inline function is there in c language? ..

Answer / rakshitha

No inline functions r not ther in c. its only in c++, in
c++ it is used to replace function call with the body of
the function..

Is This Answer Correct ?    0 Yes 0 No

inline function is there in c language? ..

Answer / subash

no inline function there in c language only c++ language

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is C language Terminator?

15 Answers   TCS,


how to create duplicate link list using C???

0 Answers  


What is the difference between null pointer and wild pointer?

0 Answers  


How will you divide two numbers in a MACRO?

0 Answers   Apps Associates,


Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop

0 Answers   HP,


two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.

5 Answers   Verifone,


How would you obtain the current time and difference between two times?

0 Answers   TISL,


Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table

3 Answers   Value Labs,


what is the mean of c languages.

1 Answers   Polaris,


how many key words availabel in c a) 28 b) 31 c) 32

0 Answers  


#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }

7 Answers   Infosys,


what is dangling pointer?

1 Answers   LG Soft,


Categories