null 227 B

1234567891011121314
  1. int** test() {
  2. return nullptr;
  3. }
  4. void main() {
  5. int** b = test();
  6. int*** c = &b;
  7. test(b == *c);
  8. test(length(b));
  9. test(length(c));
  10. test(b == nullptr);
  11. const int** w = b;
  12. test(w == nullptr);
  13. }