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
Where is volatile variable stored?
Is it better to use a macro or a function?
What is an array? What the different types of arrays in c?
Was 2000 a leap year?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
How can you read a directory in a C program?
When should structures be passed by values or by references?
Where in memory are my variables stored?
What is calloc malloc realloc in c?
Explain void pointer?
What is structure and union in c?
Can a variable be both constant and volatile?
Do string constants represent numerical values?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
What are valid signatures for the Main function?