Skip to content

Instantly share code, notes, and snippets.

@LokeshKumarES
Last active December 26, 2021 12:47
Show Gist options
  • Save LokeshKumarES/c3e1a3a2e6d1c8bd0de116d71caf9118 to your computer and use it in GitHub Desktop.
Save LokeshKumarES/c3e1a3a2e6d1c8bd0de116d71caf9118 to your computer and use it in GitHub Desktop.
#undef Miscellaneous Directives, to undefined macro name.
# include<stdio.h>
# define BOY
# undef BOY
void main(){
#ifdef BOY
printf("This is a boy.");
#endif // BOY
printf("\n Main function");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment