本文介绍了如何解决这个错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
代码给出以下错误。
错误C4996'ctime':此函数或变量可能不安全。请考虑使用ctime_s。要禁用弃用,请使用_CRT_SECURE_NO_WARNINGS。有关详细信息,请参阅在线帮助。
我尝试过:
代码:
注意:它不是警告它是错误
code give following error.
Error C4996 'ctime': This function or variable may be unsafe. Consider using ctime_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
What I have tried:
Code:
NOTE: it is not warning it is error
#include<iostream>
#include<ctime>
using namespace std;
int main()
{
time_t now = time(0);
char *time = ctime(&now);
cout << "Time of System is: " << time << endl;
system("pause");
return 0;
}
推荐答案
Quote:
如何解决此错误
答案出错!
Answer is in error message!
To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
Google提供81k答案。
Google gives 81k answers.
这篇关于如何解决这个错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!