标签:mystra c++ itoa was not declared in this scope
本文地址: http://blog.csdn.net/caroline_wendy
itoa函数不是ANSI(American National Standards Institute) C的标准, 应该避免使用这个函数.
简易替代版本为:
//itoa(i, s, 10); snprintf(s, sizeof(s), "%d", i);
C++ - "'itoa' was not declared in this scope" 错误
标签:mystra c++ itoa was not declared in this scope
原文地址:http://blog.csdn.net/caroline_wendy/article/details/39183807