gcvt在编程里面是什么的缩写?c++里面的

long和char转换用的函数 gcvt 是那几个单词的缩写啊?

char actualString[255];CSTR& CSTR::operator+(double number){
char temp [20];
_gcvt_s (number,10,temp,9);
strcat_s (this->actualString,temp);
return g_strString;
这里的_gcvt_s我还用了gcvt和gcvt_s调试,都不行
用gcvt的结果是:warning C4996: 'gcvt': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _gcvt. See online help for details.
_gcvt的结果是:warning C4996: '_gcvt': This function or variable may be unsafe. Consider using _gcvt_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
温馨提示:答案为网友推荐,仅供参考
相似回答