单选题 难度 3
只改了其中一个元素。
下面代码的输出是( )。 struct P { int x = 0; }; // main: P a[3]; a[1].x = 5; cout << a[0].x << a[1].x << a[2].x << endl;