en C:
en C++:
Código (c) [Seleccionar]
int entero = 5;
float decimal = 10.44;
char* cad = "abcde";
char buffer[200];
sprintf( buffer, "%s %d - %f", cad, entero, decimal );
en C++:
Código (cpp) [Seleccionar]
int entero = 5;
float decimal = 10.44;
std::string cad = "abcde";
std::stringstream stream;
stream << cad << " " << entero << " - " << decimal;
std::string resultado = stream.str( );