fork download
  1.  
  2. #include <stdio.h>
  3. int main()
  4. {
  5. int a = 10, b = 0, c = 10;
  6. char* str = "TFy!QJu ROo TNn(ROo)SLq SLq ULo+UHs UJq "
  7. "TNn*RPn/QPbEWS_JSWQAIJO^NBELPeHBFHT}TnALVlBL"
  8. "OFAkHFOuFETpHCStHAUFAgcEAelclcn^r^r\\tZvYxXyT|S~Pn SPm "
  9. "SOn TNn ULo0ULo#ULo-WHq!WFs XDt!";
  10. while (a != 0)
  11. {
  12. a = str[b++];
  13. while (a-- > 64)
  14. {
  15. if (++c == 90)
  16. {
  17. c = 10;
  18. putchar('\n');
  19. }
  20. else
  21. {
  22. if (b % 2 == 0)
  23. putchar('!');
  24. else
  25. putchar(' ');
  26. }
  27. }
  28. }
  29. return 0;
  30. }
  31.  
  32. Do run it on C++ and see the output yourself!!
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:6:14: warning: ISO C++11 does not allow conversion from string literal to 'char *' [-Wwritable-strings]
 char* str = "TFy!QJu ROo TNn(ROo)SLq SLq ULo+UHs UJq "
             ^
prog.cpp:32:1: error: unknown type name 'Do'
Do run it on C++ and see the output yourself!!
^
prog.cpp:32:7: error: expected ';' after top level declarator
Do run it on C++ and see the output yourself!!
      ^
      ;
1 warning and 2 errors generated.
stdout
Standard output is empty