SPRING :: NOTE
[C]C4996 에러코드 'fopen': This function or variable may be unsafe. ... 본문
반응형
error C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
해결 :
It is a stressfull job moving from one version of VC++ to another without microsoft making is worse by adding:
C4996: 'itoa': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _itoa. See online help for details.
I have tried
#pragma warning(disable : 4996)
#define _CRT_SECURE_NO_DEPRECATE
반응형
'ERROR' 카테고리의 다른 글
[APM_SETUP] 포트 80번포트가 동작중입니다. (0) | 2016.06.10 |
---|---|
[android] android studio 설치 실패 시 대처방법 (0) | 2016.06.10 |
[Windows] 프로그램 창이 화면 밖으로 나갔을 때 해결방법 (2) | 2016.06.10 |
[C/C++] error MSB8031: Building an MFC project for a non-Unicode character set is deprecated. You must change the project property to Unicode or download an additional library. (0) | 2016.06.10 |
[C] 파일 입출력 C4996 에러 (0) | 2016.06.09 |
Comments