error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS.



비주얼 스튜디오 2005 이상부터 scanf , strcpy , fopen 등의 함수를 사용하는 경우 발생하는 오류



해결1)

속성 > 구성속성 > C/C++ > 전처리기 > 전처리기 정의

_CRT_SECURE_NO_WARNINGS 추가


해결2)

맨 첫줄에 추가

1
#define _CRT_SECURE_NO_WARNINGS
cs


+ Recent posts