fork(1) download
  1. #include <stdio.h>
  2.  
  3. #define R "car"
  4. const char * s1 = "foo"R"bar"; //compile-time error
  5.  
  6. int main(void) {
  7. printf("%s\n", s1);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
foocarbar