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 |
how can I convert a string to a number?
What are the types of i/o functions?
Why is c known as a mother language?
Differentiate between Macro and ordinary definition.
is it possible to create your own header files?
How can I delete a file?
whether itis a structured language?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);
Explain how can a program be made to print the line number where an error occurs?
Explain the use of function toupper() with and example code?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above