0148-cpp_string.c - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       0148-cpp_string.c (114B)
       ---
            1 #define x(y) #y
            2 
            3 int
            4 main(void)
            5 {
            6         char *p;
            7         p = x(hello)  " is better than bye";
            8 
            9         return (*p == 'h') ? 0 : 1;
           10 }