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 linear search?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
What is header file definition?
What is the advantage of an array over individual variables?
The difference between printf and fprintf is ?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
What is exit() function?
Explain what are its uses in c programming?
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float