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 |
Explain Function Pointer?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
What is a stream in c programming?
how to find out the reverse number of a digit if it is input through the keyboard?
Why is main function so important?
What is the use of the #include directive?
Write a program to find the smallest and largest element in a given array in c language
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
Write a program to check whether a number is prime or not using c?
Explain how do you determine a file’s attributes?
what is the difference between getch() and getchar()?
Can anyone tell what is stack overflow? what precaution we should take?