を推奨されていません、私はこれを行うことにより、string
にint
を変換しようとしている:は 'itoaは':このアイテムのPOSIX名は
int id = 12689;
char snum[MAX];
itoa(id, snum, 10);
私は次のエラーを取得する:
'itoa': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _itoa.
あなたはVisual Studioを使用していますか? –
[Cでintを文字列に変換する方法](https://stackoverflow.com/questions/8257714/how-to-convert-an-int-to-string-in-c) –
の可能な複製コンパイラがあなたに伝えるもの。 –