Answer Posted / kathir
No, Inline functions are introduced in C++ to avoid the
problems while using macros.
using inline functions in C++ is as equivalent as defining
a function macro.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
given post order,in order construct the corresponding binary tree
How do you define CONSTANT in C?
Explain null pointer.
Why enum is used in c?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is function definition in c?
What is static function in c?
What are the different types of linkage exist in c?
What is oops c?
Is there a way to compare two structure variables?
Explain the properties of union.
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
How many levels of pointers can you have?
What is the c language function prototype?
Explain how do you print only part of a string?