int->string
is there a function or something that can covert an integer to a string in C++? I know they exist in VB and QB - did they manage to make it over to C++ in some fashion?
==============================
"Need more eeenput..."
- #5, "Short Circuit"
Blade Edge Software
==============================
Drew Sikora
Executive Producer
GameDev.net
TCHAR buffer[32];
int num = 10;
sprintf( buffer, "%d", num );
if ( there''''s a will )
return ( there''''s a way );
int num = 10;
sprintf( buffer, "%d", num );
if ( there''''s a will )
return ( there''''s a way );
huh. Not a function, but a method. I have to start thinking more...
==============================
"Need more eeenput..."
- #5, "Short Circuit"
Blade Edge Software
==============================
==============================
"Need more eeenput..."
- #5, "Short Circuit"
Blade Edge Software
==============================
Drew Sikora
Executive Producer
GameDev.net
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement