Skip to content

Instantly share code, notes, and snippets.

@sTinGe
Created April 24, 2018 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sTinGe/d592e36e548f2dd04829aa9f80f5f64d to your computer and use it in GitHub Desktop.
Save sTinGe/d592e36e548f2dd04829aa9f80f5f64d to your computer and use it in GitHub Desktop.
#include <stdio.h>
#define price double
#define PRINT(x) printf("macro: %f", x);
int main() {
price p = 12.3;
PRINT(p);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment