Skip to content

Instantly share code, notes, and snippets.

@remram44
Created March 7, 2013 16:29
Show Gist options
  • Save remram44/5109330 to your computer and use it in GitHub Desktop.
Save remram44/5109330 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#define STRINGIFY(x) #x
#define TOSTRING(x) STRINGIFY(x)
int main(void)
{
puts("ex" TOSTRING(__LINE__));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment