scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | 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 }