Convertir un int en String (en C++)

Convertir un int en String (en C++) - Programmation

Marsh Posté le 07-05-2002 à 02:10:12    

comment faire ???
 
Y'a une fonction?
 
int  -->  CString
 
pcq g rien trouvé  :(

Reply

Marsh Posté le 07-05-2002 à 02:10:12   

Reply

Marsh Posté le 07-05-2002 à 08:27:31    

int  iMonInt = 23453;
char szMonInt[256];
memset (szMonInt, 0, sizeof (szMonInt));
sprintf (szMonInt, "%d", iMonInt);

Reply

Marsh Posté le 07-05-2002 à 09:37:14    

En C++Builder :
AnsiString chaine;
chaine = IntToStr(variable)

 

[jfdsdjhfuetppo]--Message édité par antp le 07-05-2002 à 09:37:50--[/jfdsdjhfuetppo]


---------------
mes programmes ·· les voitures dans les films ·· apprenez à écrire
Reply

Marsh Posté le 07-05-2002 à 10:06:08    

soit i ton entier
 
CString strTmp;
strTmp.Format("%d",i);
 
voilà :)

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed