fork download
  1. #include <stdio.h>
  2. #define CONCAT(b, a, string) a "start"string"end"
  3.  
  4. int main(void) {
  5. char * a = "asfads";
  6. printf(CONCAT(a, "afs", "-hello-"));
  7. return 0;
  8. }
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
afsstart-hello-end