비주얼 스튜디오 2013(VS 2013) 버전 이상부터 scanf를 사용하면 아래와 같은 에러를 출력한다.
자세한 내용은 다음과 같다.
error C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
(scanf 함수가 취약하니 scanf_s를 사용하거나 _CRT_SECURE_NO_WARNINGS를 사용하세요)
해결 방법은 코드 첫 라인에 #pragma warning(disable:4996)
를 입력하고 컴파일하면 해결된다.