fork download
  1. #include <iostream>
  2.  
  3.  
  4. int main() {
  5. int puts(char const*);
  6. std::cout << puts("Hello!") << '\n';
  7. }
Success #stdin #stdout 0s 2928KB
stdin
Standard input is empty
stdout
Hello!
7