inline function is there in c language?
Answers were Sorted based on User's Feedback
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 |
Answer / srinivasroyal
no. there is no such type of function available in C-language.
Is This Answer Correct ? | 0 Yes | 0 No |
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 |
Answer / subash
no inline function there in c language only c++ language
Is This Answer Correct ? | 0 Yes | 0 No |
What is C language Terminator?
how to create duplicate link list using C???
What is the difference between null pointer and wild pointer?
How will you divide two numbers in a MACRO?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
How would you obtain the current time and difference between two times?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
what is the mean of c languages.
how many key words availabel in c a) 28 b) 31 c) 32
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
what is dangling pointer?