Feb 02 2008 03:02 PM 2525 2 Macro and Inline function rakesh_chourasia What is the difference between macro and inline function? gupta_pratibha Profile Answers by gupta_pratibha Questions by gupta_pratibha Apr 7th, 2008 Compiler performs return type checking, function signature before putting inline function into symbol table. But there is no type checking for Macros. So Macros are more error prone as compared to inline functions. Answer Question Select Best Answer
Feb 02 2008 03:02 PM 2525 2 Macro and Inline function rakesh_chourasia What is the difference between macro and inline function? gupta_pratibha Profile Answers by gupta_pratibha Questions by gupta_pratibha Apr 7th, 2008 Compiler performs return type checking, function signature before putting inline function into symbol table. But there is no type checking for Macros. So Macros are more error prone as compared to inline functions. Answer Question Select Best Answer
gupta_pratibha Profile Answers by gupta_pratibha Questions by gupta_pratibha Apr 7th, 2008 Compiler performs return type checking, function signature before putting inline function into symbol table. But there is no type checking for Macros. So Macros are more error prone as compared to inline functions.