fork(3) download
  1. #include <iostream>
  2. #include <fstream>
  3. using namespace std;
  4.  
  5. #define PATH R"(c:\blah\blah\file.cfg)"
  6.  
  7. int main()
  8. {
  9. cout << PATH;
  10.  
  11. ifstream f { PATH };
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
c:\blah\blah\file.cfg