fork(2) download
  1. #include <stdio.h>
  2.  
  3. #define hello abc
  4. #define macro(sequence) "\"" #sequence "\""
  5.  
  6. int main() {
  7. printf("%s\n", macro(hello));
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
"hello"