NestedMacro.h 180 Bytes Raw Blame History Permalink 1 2 3 4 5 // Verification of fix for nested macro. #define FUNCMACROINNER(a) a #define FUNCMACROOUTER(b, c) FUNCMACROINNER(b) + FUNCMACROINNER(c) int FuncMacroValue = FUNCMACROOUTER(1, 2);