Skip to content
Snippets Groups Projects
Select Git revision
  • 2023ss
  • 2025ss default
  • 2024ss
  • 2022ss
  • 2021ss
  • 2020ss
  • 2019ss
  • 2018ss
8 results

strings-06.cpp

Blame
  • strings-05.cpp 157 B
    #include <iostream>
    #include <string>
    
    int main ()
    {
      std::string hello = "Hello, world!\000Hallo, Welt!";
      std::cout << hello << std::endl;
      return 0;
    }