/* * * * * :set tabstop=9 */ #include #define str(x) lit(x) #define lit(x) #x int main () { #ifndef __STRINGIZED__ const char* s = __STRING__ ; #else const char* s = str(__STRING__); #endif printf ("STRINGIZED: %d, STRING: %s\n", __STRINGIZED__, s); }