what is an inline function?
Answers were Sorted based on User's Feedback
Answer / naveen shukla
inline function is basically a language construct which tell
the compiler to have a full function statement in the
program where the function is used
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / srinivasroyal
inline function means where the function call is replaced by
the function defination.(which can be expands in a line).
| Is This Answer Correct ? | 2 Yes | 0 No |
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
What is a substring in c?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is variable in c example?
What is anagram in c?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
can i know the source code for reversing a linked list with out using a temporary variable?
Where static variables are stored in memory in c?
When is a void pointer used?
How can I avoid the abort, retry, fail messages?
Why is struct padding needed?