what is an inline function?

Answers were Sorted based on User's Feedback



what is an inline function?..

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

what is an inline function?..

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

Post New Answer

More C Interview Questions

Explain what does the function toupper() do?

0 Answers  


How can I automatically locate a programs configuration files in the same directory as the executable?

0 Answers  


In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?

5 Answers  


Can you please explain the difference between syntax vs logical error?

0 Answers  


while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.

1 Answers   TCS,






What are pointers in C? Give an example where to illustrate their significance.

0 Answers   Wipro,


what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;

2 Answers   Google,


Tell about strtok & strstr functions

2 Answers   HCL, iFlex, Motorola,


Explain what is wrong with this program statement?

0 Answers  


Write a program to print "hello world" without using a semicolon?

0 Answers  


#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?

6 Answers   Ramco,


write a program to print the one dimensional array.

1 Answers  


Categories