1 2 3 4 5 6 7 8 9 10
#define STRINGIFY_IMPL(X) #X #define STRINGIFY(X) STRINGIFY_IMPL(X) #include STRINGIFY(TEST) int main(void) { return 0; }