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 are the preprocessors?
What library is sizeof in c?
what are you see during placement time in the student.
0 Answers Goldman Sachs, TCS, Tech Solutions,
what are two kinds of java
Explain what is wrong with this program statement? Void = 10;
What is the benefit of using an enum rather than a #define constant?
What is the use of putchar function?
how can we print hellow world programme without using semicolon
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
When should the register modifier be used? Does it really help?
mplementation of stack using any programing language
main() { char x; while(x=0;x<=255;x++) printf("\nAscii value %d Charater %c",x,x); }