What is the difference between inline functions and macros?
Answer Posted / glibwaresoftsolutions
• Inline Functions: Type-checked, replace function calls with code during compilation.
• Macros: Preprocessor directive, no type-checking.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a function to perform the substraction of two numbers. Eg: char N1="123", N2="478", N3=-355(N1-N2).
How much is c++ certification?
What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack
What is the use of ::(scope resolution operator)?
What is endianness?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
What happens when you make call 'delete this;'?
What is the full form nasa?
Explain what is polymorphism in c++?
Is c# written in c++?
What is iomanip c++?
Comment on local and global scope of a variable.
What is difference between malloc()/free() and new/delete?
How many different levels of pointers are there?
What do you know about near, far and huge pointer?