SPRING :: NOTE

[ERROR] 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. 본문

ERROR

[ERROR] 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.

RAYZIE 2016. 10. 20. 17:44
반응형
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.

Visual Studio 상위 버전 사용 시

scanf를 쓰면 보안상에 취약한 이유로 scanf_s를 쓰라는 내용이다.

scanf를 사용한 곳이 있으면 scanf_s로 바꿔주면 에러가 잡힌다.


반응형
Comments