单选题
对于如下C++程序: int main { int a, b, c; while { ++a; --b; --c; } cout << a << " " << b << " " << c << "\n"; return 0; } 请问输出结果是()