fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. #if defined(_WIN32)
  5.  
  6. std::string OS()
  7. {
  8. return "Windows";
  9. }
  10.  
  11. #elif defined(__linux__)
  12.  
  13. std::string OS()
  14. {
  15. return "Linux";
  16. }
  17.  
  18. #endif
  19.  
  20.  
  21. int main()
  22. {
  23. std::cout << OS();
  24. }
  25.  
Success #stdin #stdout 0s 3428KB
stdin
Standard input is empty
stdout
Linux