What is the difference between inline functions and macros?
Answer Posted / nashiinformaticssolutions
1. Macros: Text substitution; no type checking.
2. Inline functions: Replaced at runtime; provide type checking and debugging benefits.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is virtual table?
What is string in c++ programming?
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
What is the use of register keyword with the variables?
Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.
What's the best free c++ profiler for windows?
What is low level language in simple words?
Is ca high or low level language?
What is overloading unary operator?
Who created c++?
Which is the best c++ compiler?
Why is standard template library used?
what is Member Functions in Classes?
What is long in c++?
If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?