fork(31) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define IMPL thatimpl
  5.  
  6. #define QUOTEME(x) QUOTEME_1(x)
  7. #define QUOTEME_1(x) #x
  8.  
  9. #define INCLUDE_FILE(x) QUOTEME(impl/x/h)
  10.  
  11. const char result[] = INCLUDE_FILE(IMPL);
  12.  
  13. int main() {
  14. cout << result;
  15. return 0;
  16. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
impl/thatimpl/h