2022-08-17:以下go语言代码输出什么?A:运行时 panic;B:32;C:编译错误;D:0。package mainfunc main() { var x *struct { s [][32]byte } println(len(x.s[99]))}