macro definition and expansion

Solutions on MaxInterview for macro definition and expansion by the best coders in the world

showing results for - "macro definition and expansion"
Chaima
14 Jun 2018
1#define <identifier> <replacement token list>                    // object-like macro
2#define <identifier>(<parameter list>) <replacement token list>  // function-like macro, note parameters
3