Skip to content

Instantly share code, notes, and snippets.

@bagder
Created February 22, 2019 08:35
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 bagder/e46bced5b3f38aa446451d895a829527 to your computer and use it in GitHub Desktop.
Save bagder/e46bced5b3f38aa446451d895a829527 to your computer and use it in GitHub Desktop.
convert a given define to a string
#include <stdio.h>
#define xstr(s) str(s)
#define str(s) #s
int main(void)
{
printf("%s\n", xstr(STRING));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment