itoa function problem

Aviadjo picture Aviadjo · Sep 26, 2010 · Viewed 25.5k times · Source

I'm working on Eclipse inside Ubuntu environment on my C++ project.

I use the itoa function (which works perfectly on Visual Studio) and the compiler complains that itoa is undeclared.

I included <stdio.h>, <stdlib.h>, <iostream> which doesn't help.

Answer

Component 10 picture Component 10 · Sep 26, 2010

www.cplusplus.com says:

This function is not defined in ANSI-C and is not part of C++, but is supported by some compilers.

Therefore, I'd strongly suggest that you don't use it. However, you can achieve this quite straightforwardly using stringstream as follows:

stringstream ss;
ss << myInt;
string myString = ss.str();