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
Write a program to print factorial of given number without using recursion?
What is the use of static variable in c?
What is the difference between strcpy() and memcpy() function in c programming?
What is difference between constant pointer and constant variable?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
What is the significance of an algorithm to C programming?
Write a program for Overriding.
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is the scope of local variable in c?
Explain the binary height balanced tree?
What is array of pointers to string?
In which header file is the null macro defined?
write a c program to find the sum of five entered numbers using an array named number
Where static variables are stored in c?
What is array in c with example?