C 표준 라이브러리의 심볼은 C++에 예약되어 있습니까? 이것은 다른 질문에 대한 후속 조치입니다. 원래 질문은 다른 문제가 있었지만, (CLang에 따르면) 주요 문제는 C++를 포함한 멋진 C++만 사용되는 다른 기호로 재정의되었다는 것을 깨달아야 했습니다. 다음은 축소된 버전입니다. #include using std::cout; using std::endl; class time { public: int h, min, sec; }; const int full = 60; void canonify(time& pre) // Error here (line 14) { pre.min += pre.sec / full; pre.h += pre.min / full; pre.sec %= full; pre.min %= ..