一道理论题,看不懂,求助!
程序代码:
int main() { double disgusting[3][4][5][6] = {{{{0}}}}; double (*ptr)[6] = _____; ptr[2][3] = 2.3333; return 0; }
Which of the following expressions would be correct to fill in the blank?
A. disgusting[0]
B. disgusting[2][1]
C. (double *[6])disgusting[4][3]
D. disgusting[0][3][2]
答案是B