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 |
Why header files are used?
When should the register modifier be used? Does it really help?
Why dont c comments nest?
What is the scope of local variable in c?
write a programe returns the number of times the character appears in the string
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
What is difference between arrays and pointers?
Write a program in c using only loops to print * * * * * *******
What are the types of variables in c?
write a function which accept two numbers from main() and interchange them using pointers?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
State the difference between realloc and free.