单选题 难度 2
用点号访问成员。
下面代码的输出是( )。 struct P { int x, y; }; // main: P p = {3, 4}; p.x += p.y; cout << p.x << " " << p.y << endl;