main.cpp 73 B

1234
  1. int main() {
  2. volatile char* ptr = new char[100];
  3. delete[] ptr;
  4. }