null 156 B

1234567891011
  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. }