Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 28, 2022 00:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/ecc12b2bfa2302b2a417b2cc8479760b to your computer and use it in GitHub Desktop.
Save parzibyte/ecc12b2bfa2302b2a417b2cc8479760b to your computer and use it in GitHub Desktop.
std::string enteroACadena(int entero)
{
std::string numeroComoCadena = "";
std::stringstream ss;
ss << entero;
ss >> numeroComoCadena;
return numeroComoCadena;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment