int** test() { return nullptr; } void main() { int** b = test(); int*** c = &b; print b == *c; print length(b); print length(c); }