main.cpp 139 B

123456789
  1. #include <iostream>
  2. // tag::source[]
  3. int main()
  4. {
  5. char* c = nullptr;
  6. std::cout << "Hello sanitizers\n " << *c;
  7. }
  8. // end::source[]