I'm wondering what are some other ways to pass an integer to a string.
I know of using the stringstream function from the header file <sstream> but when I do use it, there are conflicts when using functions from the header file <string>. When I use functions from "#include <string>" the program tries to search through it from sstream and not from the string header file.
So yeah, I was wondering what are other ways I can turn an integer into a string.
I know of using the stringstream function from the header file <sstream> but when I do use it, there are conflicts when using functions from the header file <string>. When I use functions from "#include <string>" the program tries to search through it from sstream and not from the string header file.
Huh? What do you mean?
So yeah, I was wondering what are other ways I can turn an integer into a string.
I'm wondering what are some other ways to pass an integer to a string.
I know of using the stringstream function from the header file <sstream> but when I do use it, there are conflicts when using functions from the header file <string>. When I use functions from "#include <string>" the program tries to search through it from sstream and not from the string header file.
Get a better compiler or show your code because this should not happen.