在VS 2013中运行此程序会出现如下错误:
1>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.
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========
查阅之后,发现加入#pragma warning(disable : 4996)【如果您确定代码中没有安全问题,可以通过禁用此功能#pragma warning(disable : 4996)
。】
之后就可以了。