vs2012 error c4996: 'fopen': This function or variable may be unsafe

查志強發表於2016-08-25

【原文:http://blog.csdn.net/zhangyuehuan/article/details/12012635

做數字影象處理作業,使用vs2012,遇到如下錯誤。

1>------ 已啟動生成: 專案: 20130925, 配置: Debug Win32 ------
1>  stdafx.cpp
1>d:\code\20130925\20130925\stdafx.cpp(18): 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.
1>          d:\vs2012\vc\include\stdio.h(218) : 參見“fopen”的宣告
1>  20130925.cpp
1>  正在生成程式碼...
========== 生成: 成功 0 個,失敗 1 個,最新 0 個,跳過 0 個 ==========

 

解決方案,專案 =》屬性 =》c/c++  =》前處理器=》點選前處理器定義,編輯,加入_CRT_SECURE_NO_WARNINGS,即可。


相關文章