What is the difference between macros and inline functions?
Answer Posted / jayapradap a
the way they are handled. Inline functions are parsed by the compiler, whereas macros are expanded by the C++ preprocesso these are The major difference between inline functions and macros
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are # preprocessor operator in c?
What is main function in c?
what are the different storage classes in c?
Explain the use of function toupper() with and example code?
In C language, a variable name cannot contain?
Can the sizeof operator be used to tell the size of an array passed to a function?
What is an expression?
What is the purpose of main( ) in c language?
What are loops in c?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What are the 4 types of organizational structures?
Can one function call another?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Tell me when is a void pointer used?
Explain the use of keyword 'register' with respect to variables.