What is difference between template and macro??
By on Apr 30, 2007 in C/C++ Interview Questions
There is no way for the compiler to verify that the macro parameters are of compatible
types. The macro is expanded without any special type checking. If macro parameter has a postincremented variable ( like c++ ), the increment is performed two times. Because macros are expanded by the preprocessor, compiler error messages will refer to [...]


