fork download
  1. #ifdef _WIN32
  2. #define ENVOS "win"
  3. #else
  4. #define ENVOS "nxx"
  5. #endif
  6.  
  7. #include <stdio.h>
  8.  
  9. int main()
  10. {
  11. printf("%s", ENVOS);
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5284KB
stdin
 
stdout
nxx