编程软件是VS2012。。
定义
static int score=0;
char bestScore[20];
句子是这样的
_itoa (score,bestScore,10);
提示出错是
error C4996: '_itoa': This function or variable may be unsafe. Consider using _itoa_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
改成_itoa_s (score,bestScore,10);提示错误
侃侃无极
相关分类