Skip to content
Snippets Groups Projects
Select Git revision
  • 52ae61061c6f119a117d0cbb9f578e72d12f53d7
  • 2024ss default
  • 2023ss
  • 2022ss
  • 2021ss protected
5 results

exploit-2.c

  • namespaces-06.cpp 181 B
    #include <iostream>
    
    using std::cout, std::endl;
    
    class greeting
    {
    public:
      const char *hello = "Hello, world!";
    };
    
    int main ()
    {
      cout << greeting::hello << endl;
      return 0;
    }