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

strings-12.cpp

Blame
  • strings-12.cpp 117 B
    #include <iostream>
    
    int main ()
    {
      char *hello = "Hello, world!";
      std::cout << hello << std::endl;
      return 0;
    }