Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - I hope all C language experts can help me solve the following question and explain the for(i=0;i<8;i++) x+=a[i][j] in the question.
I hope all C language experts can help me solve the following question and explain the for(i=0;i<8;i++) x+=a[i][j] in the question.

B

Uncertain value

The first double for loop assigns values ??to the nine elements a00 a01 a02 a10 a11 a12 a20 a21 a22

After Sun Huan finished, j = 3

When doing the accumulation, the values ????of a03 a13 .... a73

were accumulated, and these elements were not assigned.

For initialization values, different compilers have different approaches. Some assign values ??to 0, some assign values ??to 0xcc, and some assign them to random numbers directly.

So the accumulated value is also uncertain

p>