Stringification

#define STR(name) #name
char * a = STR(object);   #=> char * a = "object";
Comments