fork(5) download
  1. #include <stdio.h>
  2. #define TEST 0
  3. #define TEST_NAME "Joe"
  4. #define ID_TO_NAME(id) id ## _NAME
  5.  
  6. int main(void) {
  7. printf("%s\n", ID_TO_NAME(TEST));
  8. return 0;
  9. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
Joe