Created
January 18, 2020 19:43
-
-
Save ramajd/bcac47747a9a1c4abf6d3d47c27f4a3c to your computer and use it in GitHub Desktop.
preprocessor definition in c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#ifndef MYFLAG | |
#define MYFLAG "default flag" | |
#endif | |
int main() { | |
printf("compiled with: %s\n", MYFLAG); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment