Skip to content

Instantly share code, notes, and snippets.

@enukane
Created January 24, 2012 13:20
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 enukane/1670149 to your computer and use it in GitHub Desktop.
Save enukane/1670149 to your computer and use it in GitHub Desktop.
spaces between # and define
# include<stdio.h>
# define HOGE 1
#ifdef HOGE
# define HUGA 2
#else
# define HUGA 3
#endif
int
main()
{
printf("%d\n", HUGA);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment