fork(1) download
  1. #include <stdio.h>
  2. #define NS(A, B) A##_##B
  3.  
  4. int NS(Foo, bar)() {
  5. return 0;
  6. }
  7.  
  8. int main(void) {
  9. printf("%d\n", Foo_bar());
  10.  
  11. #define bar NS(Foo, bar)
  12. printf("%d\n", bar());
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
0
0