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 |
What is %d used for?
what is the difference between class and unio?
Differentiate between a structure and a union.
Where are some collections of useful code fragments and examples?
Are the variables argc and argv are always local to main?
simple program of graphics and their output display
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Write a program for Overriding.
Can i use Two or More Main Funtion in any C program.?
What is else if ladder?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?