Skip to content
Snippets Groups Projects
Select Git revision
  • 2023ws
  • 2024ws default
  • 2022ws
  • 2021ws
  • 2020ws
  • 2018ws
  • 2019ws
  • 2017ws
  • 2016ws
9 results

if-2.c

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;
    }