Skip to content

Instantly share code, notes, and snippets.

@jemyzhang
Created March 23, 2018 01:53
Show Gist options
  • Save jemyzhang/4d3f7d27bdcea684d645d631e29a0fa4 to your computer and use it in GitHub Desktop.
Save jemyzhang/4d3f7d27bdcea684d645d631e29a0fa4 to your computer and use it in GitHub Desktop.
[Print The Value of Macro Definitions] #c
#define PRINT_MACRO_HELPER(x) #x
#define PRINT_MACRO(x) #x"="PRINT_MACRO_HELPER(x)
#pragma message(PRINT_MACRO(MULTI_CACHE))
#pragma message(PRINT_MACRO(_CACHE))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment