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 double pointer?
what is the significance of static storage class specifier?
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }
11 Answers CISOC, CitiGroup, College School Exams Tests,
The differences between Windows XP and Windows Visa
c program to compute AREA under integral
Who is invented by c?
Explain how can I right-justify a string?
What is difference between union and structure in c?
What are the properties of union in c?
Write a routine that prints out a 2-D array in spiral order!
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is difference between function overloading and operator overloading?